H
HillBilly
I am at my wits end. I can get an XML element returned to me from a
StreamReader:
string responseString = streamReader.ReadToEnd();
The responseString string variable will contain a single XML element:
<friends>[true|false]</friends>
There is no Root element and I cannot figure out which class to use to read
the true or false InnerText property and then teturn that value to the
caller. WTF?
StreamReader:
string responseString = streamReader.ReadToEnd();
The responseString string variable will contain a single XML element:
<friends>[true|false]</friends>
There is no Root element and I cannot figure out which class to use to read
the true or false InnerText property and then teturn that value to the
caller. WTF?