示例#1
0
 /// <summary>
 /// Return a handle to the first child element.
 /// </summary>
 TiXmlHandle FirstChildElement()
 {
     if (node != null)
     {
         TiXmlElement child = node.FirstChildElement();
         if (child != null)
         {
             return(new TiXmlHandle(child));
         }
     }
     return(new TiXmlHandle());
 }