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

◆ this[int index]

virtual ? DataViewSetting System.Data.DataViewSettingCollection.this[int index]
getset

Definition at line 88 of file DataViewSettingCollection.cs.

89 {
90 get
91 {
92 DataTable table = GetTable(index);
93 if (table != null)
94 {
95 return this[table];
96 }
97 return null;
98 }
99 [param: DisallowNull]
100 set
101 {
102 DataTable table = GetTable(index);
103 if (table != null)
104 {
105 this[table] = value;
106 }
107 }
108 }