Метод | Описание | |
---|---|---|
AddSeedMaterial ( byte seed ) : void |
Add more seed material to the generator.
|
|
AddSeedMaterial ( long seed ) : void |
Add more seed material to the generator.
|
|
NextBytes ( byte bytes ) : void |
Fill byte array with random values.
|
|
NextBytes ( byte bytes, int start, int len ) : void |
Fill byte array with random values.
|
|
ReversedWindowGenerator ( IRandomGenerator generator, int windowSize ) : System |
Метод | Описание | |
---|---|---|
doNextBytes ( byte bytes, int start, int len ) : void |
public AddSeedMaterial ( byte seed ) : void | ||
seed | byte | A byte array to be mixed into the generator's state. |
Результат | void |
public AddSeedMaterial ( long seed ) : void | ||
seed | long | A long value to be mixed into the generator's state. |
Результат | void |
public NextBytes ( byte bytes ) : void | ||
bytes | byte | Array to be filled. |
Результат | void |
public NextBytes ( byte bytes, int start, int len ) : void | ||
bytes | byte | Array to receive bytes. |
start | int | Index to start filling at. |
len | int | Length of segment to fill. |
Результат | void |
public ReversedWindowGenerator ( IRandomGenerator generator, int windowSize ) : System | ||
generator | IRandomGenerator | |
windowSize | int | |
Результат | System |