The type or namespace name 'XmlDocument' could not be found (are you missing a using directive or an assembly reference?)
Adding
using System.Xml;
directive did not help...Solution: add
using Windows.Data.Xml.Dom;
directive:using Windows.Data.Xml.Dom;
...
var xmlDocument = new XmlDocument();
No comments:
Post a Comment