Quantcast
Channel: WP7 – Developer Publish
Viewing all articles
Browse latest Browse all 51

How to calculate difference between two dates in C# ?

$
0
0
There are times when you might to calculate the difference between two days in C# and get the number of days as result. How to calculate difference between two dates in C# ? Assuming both the start date and the end date are of type DateTime , we can use the TotalDays property to find the number of days between two days. using System; namespace DeveloperPublish { class Program { static void Main(string args) { DateTime date1 = new DateTime(2015, 1, 18); DateTime date2 = new DateTime(2015, 1, 11); // Find the difference between two dates and get the Total

Viewing all articles
Browse latest Browse all 51

Trending Articles