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

◆ this[int index] [1/2]

string? System.Collections.Specialized.StringCollection.this[int index]
getset

Implements System.Collections.IList.

Definition at line 11 of file StringCollection.cs.

12 {
13 get
14 {
15 return (string)data[index];
16 }
17 set
18 {
19 data[index] = value;
20 }
21 }