C# Класс Myre.StaticRandom

Generates random numbers
Показать файл Открыть проект

Открытые методы

Метод Описание
Random ( uint upperBound = uint.MaxValue ) : uint

Creates a random number, using the time as a seed

Random ( uint seed, uint upperBound ) : uint

Creates a random number from the specified seed

Описание методов

Random() публичный статический Метод

Creates a random number, using the time as a seed
public static Random ( uint upperBound = uint.MaxValue ) : uint
upperBound uint The maximum value (exclusive)
Результат uint

Random() публичный статический Метод

Creates a random number from the specified seed
public static Random ( uint seed, uint upperBound ) : uint
seed uint The seed value
upperBound uint The maximum value (exclusive)
Результат uint