以前也有人问过类似的问题,但我找不到我遇到的问题的答案。
我想使用 linq xml 函数将我的 config.xml 设置转换为字典,但总是得到Possible System.NullReferenceException
. 所以,我需要检查属性及其值是否存在。
这样做的语法是什么?
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<Services>
<add key ="key1" value ="value1"></add>
<add key ="key2" value ="value2"></add>
<add key ="key3" value ="value3"></add>
</Services>
</configuration>
我的 lambda 代码:
XDocument doc = XDocument.Load(configFilePath);
var d = (from name in doc.Descendants("Services") select name)
.ToDictionary(n => n.Attribute("key")
.Value, n.Attribute("value")
.Value);