Adding Dates?
Messages   Related Types
This message was discovered on ASPFriends.com 'aspngbeta' list.


John.Horkan@ngrid.ie
How can I add, subtract and determine the difference between dates in .NET.
I'm thinking DateAdd & DateDiff in VB6.

Please,
jh

*******************************************************************
This E-mail message (including any attachments) is confidential
and intended solely for the use of the individual or entity to whom
it is addressed. If you have received the message in error, please
notify Click here to reveal e-mail address.

The message has been scanned for viruses. ESB National Grid.
*******************************************************************

Reply to this message...
 
    
Kamal Patel
The DateTime object exposes methods which allow you to work with the dates
such as Add(), Subtract(), AddMonth(), AddYear() etc. here is a small
example:

DateTime d1 = DateTime.Now;
DateTime d2 = d1.AddMonth(2);

TimeSpan ts = d2.Subtract(d1);
string sDays = ts.Days.ToString();

Also, you could still call the VB functions if you are developing with VB.

hth,
Kamal

<Click here to reveal e-mail address> wrote in message news:378548@aspngbeta...
[Original message clipped]

Reply to this message...
 
 
System.DateTime
System.TimeSpan




Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com