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

◆ this[int index]

bool System.Collections.BitArray.this[int index]
getset

Definition at line 88 of file BitArray.cs.

89 {
90 get
91 {
92 return Get(index);
93 }
94 set
95 {
96 Set(index, value);
97 }
98 }
void Set(int index, bool value)
Definition BitArray.cs:326