Answers for "how to check if datetimeoffset is yesterday"

C#
0

get date of tomorrow c#

var today = DateTime.Today;
var tomorrow = today.AddDays(1);
var yesterday = today.AddDays(-1);
Posted by: Guest on August-09-2020

Code answers related to "how to check if datetimeoffset is yesterday"

C# Answers by Framework

Browse Popular Code Answers by Language