Vector<T> Constructor (array<T>, Int32)
Creates a vector from a specified array starting at a specified index position.
Namespace: System.Numerics
Assembly: System.Numerics.Vectors (in System.Numerics.Vectors.dll)
| Exception | Condition |
|---|---|
| ArgumentNullException | values is nullptr. |
| IndexOutOfRangeException | index is less than zero. -or- The length of values minus index is less than Vector<T>::Count. |
The array must contain at least Vector<T>::Count elements from the specified index.
Show: