以下は私のコードです: putContactResponse で XML で応答を取得しており、そのノードを文字列に変換したい
if (putContactResponse != string.Empty)
{
var responseElement = XElement.Parse(putContactResponse);
string statusCode = responseElement.XPathSelectElement("/Status").Value;
}