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

◆ Add() [1/2]

void System.Xml.Linq.XStreamingElement.Add ( object? content)
inline

Definition at line 50 of file XStreamingElement.cs.

51 {
52 if (content == null)
53 {
54 return;
55 }
57 if (list == null)
58 {
59 list = new List<object>();
60 if (this.content != null)
61 {
62 list.Add(this.content);
63 }
65 }
66 list.Add(content);
67 }

References System.Xml.Linq.XStreamingElement.content, System.Xml.Dictionary, and System.list.