This documentation is archived and is not being maintained.
DateTimeOffset::Addition Operator
Visual Studio 2010
Adds a specified time interval to a DateTimeOffset object that has a specified date and time, and yields a DateTimeOffset object that has new a date and time.
Assembly: mscorlib (in mscorlib.dll)
public: static DateTimeOffset operator +( DateTimeOffset dateTimeOffset, TimeSpan timeSpan )
Parameters
- dateTimeOffset
- Type: System::DateTimeOffset
The object to add the time interval to.
- timeSpan
- Type: System::TimeSpan
The time interval to add.
Return Value
Type: System::DateTimeOffsetAn object whose value is the sum of the values of dateTimeTz and timeSpan.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The resulting DateTimeOffset value is less than MinValue. -or- The resulting DateTimeOffset value is greater than MaxValue. |
The Addition method defines the addition operation for DateTimeOffset values. It enables code such as the following:
Languages that do not support custom operators and operator overloading can call the Add method instead.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: