I'm trying to parse an xml document using the following:
XmlDocument doc = new XmlDocument ();
doc.LoadXml (myXMLstring);
I get the error:
The type or namespace name 'XmlDocument' could not be found. Are you missing an assembly reference?
..even though I have using System.Xml;
I'm not sure what an assembly reference is. I'm using Xamarin Studio. I see there are several folders for references. In the references folder for the base project I don't see an entry for System.Xml
But in individual platforms I do see System.Xml in there.
What can I do to get this error line to clear?