Stream
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hey, I want to create streamreader object by using xml like this StreamReader sr = new StreamReader(xmlNode.InnerXml); But it is showing the following error - Illegal characters in path. Can anybody tell how to do this, Thanks, Chito
chito wrote: StreamReader sr = new StreamReader(xmlNode.InnerXml); Try instead:
StringReader sr = new StringReader(xmlNode.InnerXml);
Hope this helps, Nathan --------------------------- Hmmm... what's a signature?