SubArray T  Constructor Bespoke Osc Library

Namespace: Bespoke.Common
Assembly: Bespoke.Common (in Bespoke.Common.dll) Version: 5.0.0.0 (5.0.0.0)
Syntax

Public Sub New ( _
	source As T(), _
	start As Integer, _
	length As Integer _
)

Parameters

source
Type:  T 
The source array.
start
Type: OnlineSystem Int32
The index, into the source array, to begin the sub array.
length
Type: OnlineSystem Int32
The length of the sub array.
Exceptions

ExceptionCondition
OnlineSystem ArgumentOutOfRangeExceptionThrown if start is less than 0. -or- start is equal to or greater than source.Length. -or- length is less and 0. -or- length is greater than source.Length - start.
See Also