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

◆ this[int index]

object System.Collections.ArrayList.SyncIList.this[int index]
getset

Implements System.Collections.IList.

Definition at line 890 of file ArrayList.cs.

891 {
892 get
893 {
894 lock (_root)
895 {
896 return _list[index];
897 }
898 }
899 set
900 {
901 lock (_root)
902 {
903 _list[index] = value;
904 }
905 }
906 }