ArraySegment<T> Constructor (array<T[], Int32, Int32)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a new instance of the ArraySegment<T> structure that delimits the specified range of the elements in the specified array.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Sub New ( _
array As T(), _
offset As Integer, _
count As Integer _
)
public ArraySegment(
T[] array,
int offset,
int count
)
Parameters
- array
Type: array<T[]
The array containing the range of elements to delimit.
- offset
Type: System.Int32
The zero-based index of the first element in the range.
- count
Type: System.Int32
The number of elements in the range.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | array is nulla null reference (Nothing in Visual Basic). |
ArgumentOutOfRangeException | offset or count is less than 0. |
ArgumentException | offset and count do not specify a valid range in array. |
Remarks
The original array must be one-dimensional and must have zero-based indexing.
Multiple ArraySegment<T> instances can refer to the same original array and can overlap.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.