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

◆ this[int index]

override object System.Collections.ArrayList.SyncArrayList.this[int index]
getset

Implements System.Collections.IList.

Definition at line 576 of file ArrayList.cs.

577 {
578 get
579 {
580 lock (_root)
581 {
582 return _list[index];
583 }
584 }
585 set
586 {
587 lock (_root)
588 {
589 _list[index] = value;
590 }
591 }
592 }