DateTime.op_Addition Method
.NET Framework 2.0
Adds a specified time interval to a specified date and time, yielding a new date and time.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
The following code example demonstrates the addition operator.
System::DateTime dTime( 1980, 8, 5 ); // tSpan is 17 days, 4 hours, 2 minutes and 1 second. System::TimeSpan tSpan( 17, 4, 2, 1 ); // Result gets 8/22/1980 4:02:01 AM. System::DateTime result = dTime + tSpan;
System.DateTime dTime = new System.DateTime(1980, 8, 5); // tSpan is 17 days, 4 hours, 2 minutes and 1 second. System.TimeSpan tSpan = new System.TimeSpan(17, 4, 2, 1); // Result gets 8/22/1980 4:02:01 AM. System.DateTime result = dTime.Add(tSpan);
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: