public void DiscreteUniform(
int sampleSize,
int[] destinationArray,
int destinationIndex,
int lowerBound,
int upperBound
)
Public Sub DiscreteUniform (
sampleSize As Integer,
destinationArray As Integer(),
destinationIndex As Integer,
lowerBound As Integer,
upperBound As Integer
)
public:
void DiscreteUniform(
int sampleSize,
array<int>^ destinationArray,
int destinationIndex,
int lowerBound,
int upperBound
)
member DiscreteUniform :
sampleSize : int *
destinationArray : int[] *
destinationIndex : int *
lowerBound : int *
upperBound : int -> unit
ArgumentNullException | destinationArray is null. |
ArgumentOutOfRangeException | sampleSize is not positive. |
ArgumentException |
Parameter sampleSize must be less than or
equal to the
difference between the length of
parameter destinationArray
and destinationIndex. -or- destinationIndex is negative, or upperBound is not greater than lowerBound. |