RandomExtensionsNextDateOnly Method

Returns a random DateOnly that is between the specified range.

Definition

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

Parameters

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

Return Value

DateOnly
A DateOnly 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