Exemplo n.º 1
0
        private static IvyList parseXMLList(XmlNode e)
        {
            IvyList list = new IvyList();

            foreach (XmlAttribute attr in e.Attributes)
            {
                if (getComponentAttributes(list, attr))
                {
                    continue;
                }
            }

            return(list);
        }
Exemplo n.º 2
0
        private static IvyList parseXMLList(XmlNode e)
        {
            IvyList list = new IvyList();

            foreach (XmlAttribute attr in e.Attributes)
            {
                if (getComponentAttributes(list, attr))
                {
                    continue;
                }
            }

            return list;
        }