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

◆ GetEnumerator()

override IEnumerator System.Xml.XmlElementList.GetEnumerator ( )
inline

Implements System.Collections.IEnumerable.

Definition at line 250 of file XmlElementList.cs.

251 {
252 if (_empty)
253 {
254 return new XmlEmptyElementListEnumerator(this);
255 }
256 return new XmlElementListEnumerator(this);
257 }

References System.Xml.XmlElementList._empty.