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

◆ Capacity

override int System.Collections.ArrayList.Range.Capacity
getset

Definition at line 1616 of file ArrayList.cs.

1617 {
1618 get
1619 {
1620 return _baseList.Capacity;
1621 }
1622 set
1623 {
1624 if (value < Count)
1625 {
1626 throw new ArgumentOutOfRangeException("value", SR.ArgumentOutOfRange_SmallCapacity);
1627 }
1628 }
1629 }