Subtracts a specified TimeSpan value from the current instance.
[Visual Basic] Public Function Subtract( _ ByVal ts As TimeSpan _ ) As TimeSpan [C#] public TimeSpan Subtract( TimeSpan ts ); [C++] public: TimeSpan Subtract( TimeSpan ts ); [JScript] public function Subtract( ts : TimeSpan ) : TimeSpan;
The difference of the current instance and ts
(that is, the current instance minus ts).
To prevent an exception, the difference must be between MinValue and MaxValue.