The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
RandomNumberGenerator::GetNonZeroBytes Method (array<Byte>^)
.NET Framework (current version)
When overridden in a derived class, fills an array of bytes with a cryptographically strong random sequence of nonzero values.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- data
-
Type:
array<System::Byte>^
The array to fill with cryptographically strong random nonzero bytes.
The length of the byte array determines how many random bytes are produced.
The following example creates a random sequence of 100 nonzero bytes and stores it in random.
array<Byte>^ random = gcnew array<Byte>(100); //RNGCryptoServiceProvider is an implementation of a random number generator. RNGCryptoServiceProvider^ rng = gcnew RNGCryptoServiceProvider; rng->GetNonZeroBytes( random ); // The array is now filled with cryptographically strong random bytes, and none are zero.
.NET Framework
Available since 1.1
Available since 1.1
Show: