Hi,
I have an application that has been running fine for a couple of years, now
I have a WM 6 device (a HTC E100). Now this application has a number of
weirds erros like:
mystring.Replace("$",""); throwing a Native Exception. The same thing does
saving a dataset using this code:
StreamWriter stream = new StreamWriter(Config.DataPath + "\\" +
"orders.xml");
XmlTextWriter reader = new XmlTextWriter(stream);
orders.WriteXml( reader, XmlWriteMode.WriteSchema);
reader.Close();
stream.Close();
Any idea what can be going on?
Thank in advance,
Ignacio