Languages
[Edit]
EN

C# / .NET - get difference between 2 date times - days, hours, minutes

7 points
Created by:
Root-ssh
175020

In C# / .NET it is possible to check time difference as number of days, hours and minutes as shown below.

TimeSpan example

DateTime t1 = new DateTime(2000, 1, 1, 0, 0, 0, 0);
DateTime t2 = new DateTime(2012, 5, 10, 12, 30, 00, 500 );

TimeSpan dt = t2 - t1;

Console.WriteLine(dt.Days + " days " 
	+ dt.Hours + " hours " + dt.Minutes + " minutes");

Console.WriteLine("total days: " + dt.TotalDays);
Console.WriteLine("total hours: " + dt.TotalHours);
Console.WriteLine("total minutes: " + dt.TotalMinutes);

Output:

4513 days 12 hours 30 minutes
total days: 4513.52083912037
total hours: 108324.500138889
total minutes: 6499470.00833333

References

  1. TimeSpan Struct - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join