|  | Rand | 
 Inheritance Hierarchy
Inheritance Hierarchy Syntax
SyntaxThe RandGenBinomial type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | RandGenBinomial(Int32, Double) | Constructs a random number generator for binomial distributions using the RandGenMTwist class as the underlying uniform random number generator. | 
|  | RandGenBinomial(Int32, Double, RandomNumberGeneratorUniformRandomNumber) | Constructs a random number generator for binomial distributions using the specified uniform random number generator. | 
|  | RandGenBinomial(Int32, Double, Int32) | Constructs a random number generator for binomial distributions using a seeded RandGenMTwist class as the underlying uniform random number generator. | 
 Properties
Properties| Name | Description | |
|---|---|---|
|  | Probability | Gets the probability of success on each trial. | 
|  | Trials | Gets the total number of trials. | 
|  | UniformDeviateMethod | Gets and sets the delegate method for generating uniform deviates between
            zero and one. (Inherited from RandomNumberGenerator) | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | Clone | Creates a deep copy of this random number generator. (Overrides RandomNumberGeneratorClone) | 
|  | Fill(Double) | Fills the given array of doubles with random values. (Inherited from RandomNumberGenerator) | 
|  | Fill(DoubleComplex) | Fills the given array of double-precision complex numbers with random values. (Inherited from RandomNumberGenerator) | 
|  | Fill(DoubleDataBlock) | Fills the given data block with random values. (Inherited from RandomNumberGenerator) | 
|  | Fill(FloatComplex) | Fills the given array of single-precision complex numbers with random values. (Inherited from RandomNumberGenerator) | 
|  | Fill(Int32) | Fills the given array of integers with random values. | 
|  | Fill(Single) | Fills the given array of floats with random values. (Inherited from RandomNumberGenerator) | 
|  | Next | Generates a random number. | 
|  | NextDouble | Generates a double precision random number. (Overrides RandomNumberGeneratorNextDouble) | 
|  | NextDoubleComplex | Method for generating a double precision complex number random deviate. (Inherited from RandomNumberGenerator) | 
|  | NextFloat | Method for generating a single precision random deviate. (Inherited from RandomNumberGenerator) | 
|  | NextFloatComplex | Method for generating a single precision complex number random deviate. (Inherited from RandomNumberGenerator) | 
|  | Reset | Resets the random number generator using a random seed. (Inherited from RandomNumberGenerator) | 
|  | Reset(Int32) | Resets the random number generator with the specified seed. (Inherited from RandomNumberGenerator) | 
 Fields
Fields| Name | Description | |
|---|---|---|
|  | rand_ | A delegate method for generating uniform deviates between zero and one. (Inherited from RandomNumberGenerator) | 
 Remarks
Remarks See Also
See Also