Exemplo n.º 1
0
        public static object Parse(this XmlPropertyListReader item, string text)
        {
            var doc = XDocument.Parse(text);

            return(item.ParsePropertyList(doc));
        }
Exemplo n.º 2
0
        public static object LoadFrom(this XmlPropertyListReader item, string path)
        {
            var doc = XDocument.Load(path);

            return(item.ParsePropertyList(doc));
        }