2
Answers

Exception while loading assemblies: System.IO.FileNotFoundEx

Anita Mathew

Anita Mathew

8y
843
1
Exception while loading assemblies: System.IO.FileNotFoundException: Could not load assembly 'monotouch, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065'. Perhaps it doesn't exist in the Mono for Android profile?
File name: 'monotouch.dll'
 
I am not using ios but still i get this error. I cant seem to find the assembly which is trying to reference monotouch.dll .  How to resolve this? 
Answers (2)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Unless I'm missing something here, I'd have thought that you should be able to create an XmlDocument and then use its LoadXml method to load the XML string you've received from the serial device without needing to save it to a file first.

You can then create an XPathNavigator by calling the XmlDocument's CreateNavigator method.

So, in code, that would be be something like this:

XmlDocument doc = new XmlDocument();
doc.LoadXml (xmlString);
XPathNavigator nav = doc.CreateNavigator();

Alternatively, you could forget about XPathNavigator and use LINQ to XML which can certainly parse in-memory XML strings.