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

◆ this[int i]

XmlAttribute System.Xml.XmlAttributeCollection.this[int i]
get

Definition at line 10 of file XmlAttributeCollection.cs.

11 {
12 get
13 {
14 try
15 {
16 return (XmlAttribute)nodes[i];
17 }
18 catch (ArgumentOutOfRangeException)
19 {
20 throw new IndexOutOfRangeException(System.SR.Xdom_IndexOutOfRange);
21 }
22 }
23 }
static string Xdom_IndexOutOfRange
Definition SR.cs:1312
Definition SR.cs:7