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

◆ this[string name]

DesignerOptionCollection? System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection.this[string name]
get

Definition at line 128 of file DesignerOptionService.cs.

129 {
130 get
131 {
133 foreach (DesignerOptionCollection child in _children)
134 {
135 if (string.Compare(child.Name, name, ignoreCase: true, CultureInfo.InvariantCulture) == 0)
136 {
137 return child;
138 }
139 }
140 return null;
141 }
142 }
DesignerOptionCollection(DesignerOptionService service, DesignerOptionCollection parent, string name, object value)