vote up 0 vote down star

How do I get the date difference in ASP.NET C#?

E.g.: d1= 28/04/2009 09:26:14 d2= 28/04/2009 09:28:14

DateDiff = d2 - d1

flag

4 Answers

vote up 5 vote down

I think you can do it in the following way:

        DateTime d1 = DateTime.Now;
        DateTime d2 = DateTime.Now.AddDays(-1);

        TimeSpan t = d1 - d2;
link|flag
vote up 2 vote down
const string DateFormat = "dd/MM/yyyy hh:mm:ss";

DateTime d1 = DateTime.ParseExact("28/04/2009 09:26:14", DateFormat, null);
DateTime d2 = DateTime.ParseExact("28/04/2009 09:28:14", DateFormat, null);

TimeSpan dateDiff = d2 - d1;

string duration = string.Format("The time difference is: {0}", dateDiff);
link|flag
vote up 1 vote down

Check out TimeSpan

link|flag
vote up 1 vote down

There is an instance method Subtract on DateTime which returns a TimeSpan. See article

DateTime now = DateTime.Parse("2009-04-28");
DateTime newyear = DateTime.Parse("2009-01-01");
TimeSpan difference = now.Subtract(newyear);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.