I have an XML string. I need to convert this string into XMLTextReader(System.Xml.XMLTextReader) type in dotnet.

I used the following code:

string szInputXml = "<TestDataXml><DataName>testing</DataName></TestDataXml>" ;
XmlTextReader reader = new XmlTextReader(new System.IO.StringReader(szInputXml));

But the string inside the reader is empty after execution.

Please help me to figure out what needs to be done to get the XMLTextReader to be populated with the given string.

Thanks.

link|improve this question

1  
Do not use new XmlTextReader(). It has been deprecated since .NET 2.0. Use XmlReader.Create() instead. – John Saunders Jan 5 '11 at 6:28
Also, you must have something else going on. A new expression cannot return null. – John Saunders Jan 5 '11 at 6:31
feedback

1 Answer

up vote 7 down vote accepted

How do you determine if the string is empty?

string szInputXml = "<TestDataXml><DataName>testing</DataName></TestDataXml>";
XmlTextReader reader = new XmlTextReader( new System.IO.StringReader( szInputXml ) );
reader.Read();
string inner = reader.ReadInnerXml();

Without 3rd line "inner" was empty indeed. Now it contains testing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.