protected virtual void OnSample(
int sampleSize,
double[] destinationArray,
int destinationIndex
)
Protected Overridable Sub OnSample (
sampleSize As Integer,
destinationArray As Double(),
destinationIndex As Integer
)
protected:
virtual void OnSample(
int sampleSize,
array<double>^ destinationArray,
int destinationIndex
)
abstract OnSample :
sampleSize : int *
destinationArray : float[] *
destinationIndex : int -> unit
override OnSample :
sampleSize : int *
destinationArray : float[] *
destinationIndex : int -> unit
The OnSample(Int32, Double, Int32) method allows derived classes to implement their own algorithm to draw a sample.
Notes to Inheritors
When overriding OnSample(Int32, Double, Int32), you can take for granted that sampleSize is greater than 0 and less than or equal to the difference between the length of parameter destinationArray and destinationIndex, and consists, on input, of zeroed entries.