[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static void FillBounds<T>(
this ref T[,] sender,
int boundIndex,
T[] array
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Sub FillBounds(Of T) (
ByRef sender As T(,),
boundIndex As Integer,
array As T()
)
Dim sender As T(,)
Dim boundIndex As Integer
Dim array As T()
sender.FillBounds(boundIndex, array)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
generic<typename T>
static void FillBounds(
array<T,2>^% sender,
int boundIndex,
array<T>^ array
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member FillBounds :
sender : 'T[,] byref *
boundIndex : int *
array : 'T[] -> unit
No code example is currently available or this language may not be supported.
[Missing <param name="array"/> documentation for "M:DevCase.Extensions.ArrayExtensions.ArrayExtensions.FillBounds``1(``0[0:,0:]@,System.Int32,``0[])"]
No code example is currently available or this language may not be supported.
Dim str As String = "0-1-2-3-4-5-6-7-8-9"
Dim arr2D(0, 9) As String
arr2D.FillBounds(0, str.Split({"-"c}, StringSplitOptions.RemoveEmptyEntries))
For i As Integer = 0 To (arr2D.GetLength(1) - 1)
Console.WriteLine(arr2D(0, i))
Next i
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
IndexOutOfRangeException | The specified 'boundIndex' value is greater than the bounds of the first dimension in the source array. or The amount of elements in 'collection' is greater than the bounds of the second dimension in the source array. |