TimeSpan.Addition Operator (TimeSpan, TimeSpan)

 
equivalentCodeEntityM:System.TimeSpan.Add(System.TimeSpan)

Adds two specified TimeSpan instances.

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

static let inline (+)
        t1:TimeSpan *
        t2:TimeSpan : TimeSpan

Parameters

t1
Type: System.TimeSpan

The first time interval to add.

t2
Type: System.TimeSpan

The second time interval to add.

Return Value

Type: System.TimeSpan

An object whose value is the sum of the values of t1 and t2.

Exception Condition
OverflowException

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

The Addition method defines the addition operator for TimeSpan values. It enables code such as the following:

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

Languages that do not support custom operators can call the Add method instead.

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: