Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ElementData.cs
Go to the documentation of this file.
2
4
5internal sealed class ElementData
6{
7 public string localName;
8
9 public string ns;
10
11 public string prefix;
12
13 public int attributeCount;
14
16
18
20
35
36 [MemberNotNull("attributes")]
38 {
39 if (attributes == null)
40 {
42 }
43 else if (attributes.Length == attributeCount)
44 {
48 }
49 }
50}
static unsafe void Copy(Array sourceArray, Array destinationArray, int length)
Definition Array.cs:624
void AddAttribute(string prefix, string ns, string name, string value)