RandomExtensionsNextBytes Method
Returns an
Array of random bytes that has the specified
length.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.2.0
public static byte[] NextBytes(
this Random random,
int length
)
<ExtensionAttribute>
Public Shared Function NextBytes (
random As Random,
length As Integer
) As Byte()
public:
[ExtensionAttribute]
static array<unsigned char>^ NextBytes(
Random^ random,
int length
)
[<ExtensionAttribute>]
static member NextBytes :
random : Random *
length : int -> byte[]
- random Random
- The Random instance to use.
- length Int32
- The desired length of the result.
ByteAn array of random bytes that has the specified
length.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).