Answers for "c# work out difference between two dates and time"

C#
12

c# calculate difference between two dates in days

(EndDate - StartDate).TotalDays //double
(EndDate.Date - StartDate.Date).Days //int
Posted by: Guest on June-07-2020

Code answers related to "c# work out difference between two dates and time"

C# Answers by Framework

Browse Popular Code Answers by Language