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

◆ AddChild()

void System.Security.SecurityElement.AddChild ( SecurityElement child)
inline

Definition at line 202 of file SecurityElement.cs.

203 {
204 if (child == null)
205 {
206 throw new ArgumentNullException("child");
207 }
208 if (_children == null)
209 {
210 _children = new ArrayList(1);
211 }
212 _children.Add(child);
213 }
virtual int Add(object? value)

References System.Security.SecurityElement._children, and System.Collections.ArrayList.Add().