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

◆ GetNthMatchingNode()

XmlNode System.Xml.XmlElementList.GetNthMatchingNode ( XmlNode n,
bool bNext,
int nCount )
inlineprivate

Definition at line 196 of file XmlElementList.cs.

197 {
198 XmlNode xmlNode = n;
199 for (int i = 0; i < nCount; i++)
200 {
202 if (xmlNode == null)
203 {
204 return null;
205 }
206 }
207 return xmlNode;
208 }
XmlNode GetMatchingNode(XmlNode n, bool bNext)

References System.Xml.Dictionary, and System.Xml.XmlElementList.GetMatchingNode().

Referenced by System.Xml.XmlElementList.Item().