Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Allocate()

static TElement[][] System.Linq.Parallel.JaggedArray< TElement >.Allocate ( int size1,
int size2 )
inlinestatic

Definition at line 5 of file JaggedArray.cs.

6 {
7 TElement[][] array = new TElement[size1][];
8 for (int i = 0; i < size1; i++)
9 {
10 array[i] = new TElement[size2];
11 }
12 return array;
13 }

References System.array.