/// <summary> /// Return a handle to the first child node. /// </summary> TiXmlHandle FirstChild() { if (node != null) { TiXmlNode child = node.FirstChild(); if (child != null) { return(new TiXmlHandle(child)); } } return(new TiXmlHandle()); }