C# 클래스 Faker.RandomNumber

Provides access to random number generator.
This is just a convenience class and is just wrapping Random.
파일 보기 프로젝트 열기: AdmiringWorm/Faker.NET.Portable 1 사용 예제들

공개 메소드들

메소드 설명
Next ( ) : int
Next ( int maxValue ) : int
Next ( int minValue, int maxValue ) : int
Next ( long min, long max ) : long
NextBytes ( byte buffer ) : void
NextDouble ( ) : double

비공개 메소드들

메소드 설명
ResetSeed ( int Seed ) : void

메소드 상세

Next() 공개 정적인 메소드

public static Next ( ) : int
리턴 int

Next() 공개 정적인 메소드

public static Next ( int maxValue ) : int
maxValue int
리턴 int

Next() 공개 정적인 메소드

public static Next ( int minValue, int maxValue ) : int
minValue int
maxValue int
리턴 int

Next() 공개 정적인 메소드

public static Next ( long min, long max ) : long
min long
max long
리턴 long

NextBytes() 공개 정적인 메소드

public static NextBytes ( byte buffer ) : void
buffer byte
리턴 void

NextDouble() 공개 정적인 메소드

public static NextDouble ( ) : double
리턴 double