Esempio n. 1
0
 /// <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());
 }