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

◆ Capacity

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

Definition at line 105 of file ArrayList.cs.

106 {
107 get
108 {
109 return _list.Count;
110 }
111 set
112 {
113 if (value < Count)
114 {
115 throw new ArgumentOutOfRangeException("value", SR.ArgumentOutOfRange_SmallCapacity);
116 }
117 }
118 }