DateTimeOffset::Addition Operator (DateTimeOffset, TimeSpan)
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.
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1