Answers for "Read in a start- and enddate and calculate how many days between them c#"

C#
7

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 "Read in a start- and enddate and calculate how many days between them c#"

C# Answers by Framework

Browse Popular Code Answers by Language