C# Class BalloonsPop.LogicProvider.RandomNumberGenerator

Implement IRandomNumberGenerator and provides random byte values generation.
Inheritance: IRandomNumberGenerator
显示文件 Open project: Baloons-Pop-4/Main

Public Methods

Method Description
Next ( int min, int max ) : byte

Generates random byte values in the given range, right inclusive.

Method Details

Next() public method

Generates random byte values in the given range, right inclusive.
public Next ( int min, int max ) : byte
min int Minimum for result, inclusive.
max int Maximum for result, exclusive.
return byte