VectorMathCopyT(IReadOnlyListT, Int32, T, Int32, Int32) Method |
Copies a range of elements from the source to the destination array.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static void Copy<T>(
IReadOnlyList<T> source,
int sourceIndex,
T[] destination,
int destinationStartIndex,
int count
)
Parameters
- source IReadOnlyListT
- The source array.
- sourceIndex Int32
- The zero-based index in the source array at which the copying begins.
- destination T
- The destination array.
- destinationStartIndex Int32
- The zero-based index in the destination array at which storing elements begins.
- count Int32
- The number of elements to copy.
Type Parameters
- T
- The type of the elements.
See Also