Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlArrayItemAttributes.cs
Go to the documentation of this file.
2
4
6{
7 public XmlArrayItemAttribute? this[int index]
8 {
9 get
10 {
11 return (XmlArrayItemAttribute)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(XmlArrayItemAttribute? attribute)
void Insert(int index, XmlArrayItemAttribute? attribute)
void CopyTo(XmlArrayItemAttribute[] array, int index)
void Remove(XmlArrayItemAttribute? attribute)
int IndexOf(XmlArrayItemAttribute? attribute)