RandomExtensionsNextTimeSpan Method

Returns a random TimeSpan that is between the specified range.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public static TimeSpan NextTimeSpan(
	this Random random,
	TimeSpan? minValue = null,
	TimeSpan? maxValue = null
)

Parameters

random  Random
The Random instance to use.
minValue  NullableTimeSpan  (Optional)
The inclusive lower bound of the random TimeSpan returned or to use TimeSpan.MinValue. This parameter is optional.
Default value: .
maxValue  NullableTimeSpan  (Optional)
The inclusive upper bound of the random TimeSpan returned or to use TimeSpan.MaxValue. This parameter is optional.
Default value: .

Return Value

TimeSpan
A TimeSpan value that is in the specified range.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Random. 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

ArgumentNullExceptionrandom is .
ArgumentOutOfRangeExceptionmaxValue is less than minValue.

See Also