Esempio n. 1
0
        public static XElement ElementAtEx(this XmlNodeList nodeList, int i)
        {
#if UNITY_WP8
            return(nodeList.ElementAt(i));
#else
            return(nodeList[i]);
#endif
        }