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

◆ Capacity

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

Definition at line 1368 of file ArrayList.cs.

1369 {
1370 get
1371 {
1372 return _list.Capacity;
1373 }
1374 set
1375 {
1376 throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1377 }
1378 }