I need read opml and translate it to my objects. Instead of work with Xml Document I use System. Xml. Linq : using System. Xml;using System. Xml. Linq;...... XmlReader reader = new XmlTextReader(opmlUrl);XElement opml = XElement. Load(reader);var...
[ Read full article ]