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

◆ FirstAttribute

XAttribute? System.Xml.Linq.XElement.FirstAttribute
get

Definition at line 31 of file XElement.cs.

32 {
33 get
34 {
35 if (lastAttr == null)
36 {
37 return null;
38 }
39 return lastAttr.next;
40 }
41 }