Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TimeSpan::Add Method (TimeSpan)

 

Returns a new TimeSpan object whose value is the sum of the specified TimeSpan object and this instance.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
TimeSpan Add(
	TimeSpan ts
)

Parameters

ts
Type: System::TimeSpan

The time interval to add.

Return Value

Type: System::TimeSpan

A new object that represents the value of this instance plus the value of ts.

Exception Condition
OverflowException

The resulting TimeSpan is less than TimeSpan::MinValue or greater than TimeSpan::MaxValue.

The return value must be between TimeSpan::MinValue and TimeSpan::MaxValue; otherwise, an exception is thrown.

The return value is a new TimeSpan; the original TimeSpan is not modified.

The following example calls the Add method to add each element in an array of time intervals to a base TimeSpan value.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
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
Return to top
Show: