AlgorithmsCopyT Method (IListT, Int32, T, Int32, Int32) |
Namespace: X3Platform.Collections
public static void Copy<T>( IList<T> source, int sourceIndex, T[] dest, int destIndex, int count )
[Missing <typeparam name="T"/> documentation for "M:X3Platform.Collections.Algorithms.Copy``1(System.Collections.Generic.IList{``0},System.Int32,``0[],System.Int32,System.Int32)"]
Exception | Condition |
---|---|
ArgumentOutOfRangeException | sourceIndex is negative or greater than source.Count |
ArgumentOutOfRangeException | destIndex is negative or greater than dest.Length |
ArgumentOutOfRangeException | count is negative or too large. |
ArgumentNullException | source or dest is null. |