Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlElementAttributes.cs
Go to the documentation of this file.
2
4
6{
7 public XmlElementAttribute? this[int index]
8 {
9 get
10 {
11 return (XmlElementAttribute)base.List[index];
12 }
13 set
14 {
15 base.List[index] = value;
16 }
17 }
18
20 {
21 return base.List.Add(attribute);
22 }
23
25 {
26 base.List.Insert(index, attribute);
27 }
28
30 {
31 return base.List.IndexOf(attribute);
32 }
33
35 {
36 return base.List.Contains(attribute);
37 }
38
40 {
41 base.List.Remove(attribute);
42 }
43
45 {
46 base.List.CopyTo(array, index);
47 }
48}
bool Contains(XmlElementAttribute? attribute)
void Insert(int index, XmlElementAttribute? attribute)
int Add(XmlElementAttribute? attribute)
void Remove(XmlElementAttribute? attribute)
void CopyTo(XmlElementAttribute[] array, int index)
int IndexOf(XmlElementAttribute? attribute)