This documentation is archived and is not being maintained.
DateTimeOffset::Subtraction Operator (DateTimeOffset, TimeSpan)
Visual Studio 2010
Subtracts a specified time interval from a specified date and time, and yields a new date and time.
Assembly: mscorlib (in mscorlib.dll)
public: static DateTimeOffset operator -( DateTimeOffset dateTimeOffset, TimeSpan timeSpan )
Parameters
- dateTimeOffset
- Type: System::DateTimeOffset
The date and time object to subtract from.
- timeSpan
- Type: System::TimeSpan
The time interval to subtract.
Return Value
Type: System::DateTimeOffsetAn object that is equal to the value of dateTimeOffset minus timeSpan.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The resulting DateTimeOffset value is less than MinValue or greater than MaxValue. |
The Subtraction method defines the subtraction operation for DateTimeOffset objects. It enables code such as the following:
Languages that do not support custom operators and operator overloading can call the DateTimeOffset::Subtract(TimeSpan) 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: