我想将字符串转换为 XML 文件。
我将 XML 数据发送到另一台服务器并获得响应。
所以,我写了这段代码。
rsp = req.GetResponse();
using (HttpWebResponse response = req.GetResponse() as HttpWebResponse)
{
StreamReader reader = new StreamReader(response.GetResponseStream());
string Response = reader.ReadToEnd();
// This is respons andI want to read it
}
怎么读string Response
?它是 XML 格式