Click or drag to resize

DateTimeOperationsAddDays Method

Adds the specified number of days to the value of this instance.

Namespace: TomsToolbox.Essentials
Assembly: TomsToolbox.Essentials (in TomsToolbox.Essentials.dll) Version: 2.21.0+44d18b541fc9419ec3c549350a832394661b2a4d
XMLNS for XAML: Not mapped to an xmlns.
Syntax
public static TimeSpan AddDays(
	this TimeSpan timeSpan,
	double value
)

Parameters

timeSpan  TimeSpan
The time span.
value  Double
A number of whole and fractional days. The value parameter can be negative or positive.

Return Value

TimeSpan
A TimeSpan that represents the value of this instance plus the value of value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type TimeSpan. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
OverflowExceptionThe resulting TimeSpan is less than MinValue or greater than MaxValue.
See Also