0
我將以下xml解析到XElement命名條目中。XElement是否支持nil = true
<Person>
<Name>Ann</Name>
<Age i:nil="true" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" />
</Person>
時,取年齡屬性我寫這篇文章:
var entry =
XElement.Parse(
"<Person><Name>Ann</Name><Age i:nil=\"true\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" /></Person>");
var age = entry.Element("Age").Value;
年齡現在是「」,我不知道是否有某種建立的方式來得到一個空的,而不是「」?
大多數搜索都會討論如果條目不在xml中,但我總是會像這樣填充空值。