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