C# 클래스 System.Random.ImplBase

Base type for all generator implementations that plug into the base Random.
파일 보기 프로젝트 열기: JoshuaWierenga/EfiSharp

공개 메소드들

메소드 설명
Next ( ) : int
Next ( int maxValue ) : int
Next ( int minValue, int maxValue ) : int
NextBytes ( Array buffer ) : void
NextDouble ( ) : double
NextInt64 ( ) : long
NextInt64 ( long maxValue ) : long
NextInt64 ( long minValue, long maxValue ) : long
NextSingle ( ) : float
Sample ( ) : double

메소드 상세

Next() 공개 추상적인 메소드

public abstract Next ( ) : int
리턴 int

Next() 공개 추상적인 메소드

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

Next() 공개 추상적인 메소드

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

NextBytes() 공개 추상적인 메소드

public abstract NextBytes ( Array buffer ) : void
buffer Array
리턴 void

NextDouble() 공개 추상적인 메소드

public abstract NextDouble ( ) : double
리턴 double

NextInt64() 공개 추상적인 메소드

public abstract NextInt64 ( ) : long
리턴 long

NextInt64() 공개 추상적인 메소드

public abstract NextInt64 ( long maxValue ) : long
maxValue long
리턴 long

NextInt64() 공개 추상적인 메소드

public abstract NextInt64 ( long minValue, long maxValue ) : long
minValue long
maxValue long
리턴 long

NextSingle() 공개 추상적인 메소드

public abstract NextSingle ( ) : float
리턴 float

Sample() 공개 추상적인 메소드

public abstract Sample ( ) : double
리턴 double