DurationHelper.Subtract(Duration, Duration) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Subtracts the TimeSpan component of one Duration value from another Duration value. C# and Microsoft Visual Basic code should use the Subtraction (-) operator or the Duration.Subtract method instead.
static Duration Subtract(Duration const& target, Duration const& duration);
public static Duration Subtract(Duration target, Duration duration);
function subtract(target, duration)
Public Shared Function Subtract (target As Duration, duration As Duration) As Duration
Parameters
- target
- Duration
The value to subtract from.
- duration
- Duration
The value to subtract.
Returns
The resulting Duration after TimeSpan component subtraction.