NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TimeSpan Subtraction Operator

Subtracts one TimeSpan value from specified TimeSpan.

[C#]
public static TimeSpan operator -(
   TimeSpan t1,
   TimeSpan t2
);
[C++]
public: static TimeSpan operator op_Subtraction(
   TimeSpan t1,
   TimeSpan t2
);
[JScript]
returnValue = t1 - t2;

[Visual Basic] In Visual Basic, you cannot use the operators defined by a type, nor override them or define your own.

[JScript] In JScript, you can use the operators defined by a type, but you cannot override them or define your own.

Arguments [JScript]

t1
The first TimeSpan.
t2
The second TimeSpan.

Parameters [C#, C++]

t1
The first TimeSpan.
t2
The second TimeSpan.

Return Value [C#, C++, JScript]

The TimeSpan that results from subtracting the two TimeSpan values.

Remarks [C#, C++, JScript]

This TimeSpan operator performs the arithmetic operation of subtracting two specified TimeSpan values (t1- t2). and returns a new TimeSpan that is the difference.

See Also

TimeSpan Structure | TimeSpan Members | System Namespace