Below is my code: I am getting response in XML in putContactResponse and I want to convert its node into string
if (putContactResponse != string.Empty)
{
var responseElement = XElement.Parse(putContactResponse);
string statusCode = responseElement.XPathSelectElement("/Status").Value;
}