var elemList = doc.GetElementsByTagName(...);
for (int i = 0; i < elemList.Count; i++)
{
var attrVal = elemList[i].Attributes["Name"].Value;
if (null == attrVal)
{
// no value
}
}
于 2013-03-29T17:34:31.343 回答
This answer is useful
0
这超出了 DTD 提供空值检查的功能。
您可以做两件事:
1. 添加默认值,如“NoData”
2. 在 XML 中添加 minLength:minLength="2"