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

◆ RemoveAt()

void System.Xml.XmlNamedNodeMap.SmallXmlNodeList.RemoveAt ( int index)
inline

Definition at line 116 of file XmlNamedNodeMap.cs.

117 {
118 if (_field == null)
119 {
120 throw new ArgumentOutOfRangeException("index");
121 }
123 {
124 list.RemoveAt(index);
125 return;
126 }
127 if (index != 0)
128 {
129 throw new ArgumentOutOfRangeException("index");
130 }
131 _field = null;
132 }

References System.Xml.XmlNamedNodeMap.SmallXmlNodeList._field, System.index, and System.list.

Referenced by System.Xml.XmlNamedNodeMap.RemoveNodeAt().