Be Happy
I am Ph.D. student in Computer Science at King Abdullah University of Science & Technology (KAUST).
Tuesday, December 2, 2008
xml String parsing in C#
I have faced problems for parsing xml string in C#. I have solved in the following ways:
Instead of give the actual string to the XmlTextReader
XmlTextReader reader = new XmlTextReader(result);
You should pass with the help of StringReader Object.
XmlTextReader reader = new XmlTextReader(new System.IO.StringReader(result));
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)