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

◆ Capacity

Definition at line 9 of file ArrayBuilder.cs.

10 {
11 get
12 {
13 T[] array = _array;
14 if (array == null)
15 {
16 return 0;
17 }
18 return array.Length;
19 }
20 }

Referenced by System.Collections.Generic.ArrayBuilder< T >.Add(), and System.Collections.Generic.ArrayBuilder< T >.EnsureCapacity().