从该字符串中获取 URL 的最佳方法是什么?
string text = @"<INMobileCRMConfig>
<WebserviceURL>
https://179.18.0.30:8200/INPhone/INPhoneMessages/
</WebserviceURL>
</INMobileCRMConfig>";
我试过以下:
XElement doc = XElement.Parse(text);
string url = doc.FirstNode.ToString();
和
string url = doc.Descendants().Elements("WebserviceURL").Value;
以及其他一些类似的事情。