0
XElement config = XElement.Parse(
@"<Response SessionId='BEDF38F9ADAB4F029404C69E49951E73' xmlns='http://schemas.sample.com/sample.xsd'>
<Status Success='true' Message='User is now logged in.' ErrorCode='0' />
<UserID>80077702-0</UserID>
</Response>");
string masterID = (string)config.Element("UserID")
如何從UserID元素獲取值UserID?Linq to XML - 如何獲取元素的值
+1。我懶得翻看,所以我錯過了'xmlns'。 – 2010-09-17 15:59:14
也可以使用just(string)config.Element(「UserID」) – 2010-09-17 15:59:52
謝謝!它效果很好。 – kalls 2010-09-17 16:01:03