RandomExtensionsNextEnumTEnum Method
Returns a random TEnum value.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.2.0
public static TEnum NextEnum<TEnum>(
this Random random
)
where TEnum : struct, new()
<ExtensionAttribute>
Public Shared Function NextEnum(Of TEnum As {Structure, New}) (
random As Random
) As TEnum
public:
[ExtensionAttribute]
generic<typename TEnum>
where TEnum : value class, gcnew()
static TEnum NextEnum(
Random^ random
)
[<ExtensionAttribute>]
static member NextEnum :
random : Random -> 'TEnum when 'TEnum : struct, new()
- random Random
- The Random instance to use.
- TEnum
- The type of the enum. Must be an Enum type.
TEnumA random
TEnum value or the default value of
TEnum if it has no defined values.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).