我正在尝试在app.config
文件中编写一个对象。
当我到达以下行时
windowMain.config.Sections["LayoutSettings"].SectionInformation.SetRawXml("<LayoutSettings>" + XElement.Parse(str).ToString() + "</LayoutSettings>");
XElement.Parse(str).ToString()
没有错误,它有正确的值。
windowMain.config.Sections["LayoutSettings"]
显示null
,但是部分的计数显示为一个,但是已经有一个配置部分和部分名称布局设置。
抛出以下异常:
An error occurred creating the configuration section handler for LayoutSettings: Could not load file or assembly 'Sigma' or one of its dependencies.
我的app.config
在configsection
中包含以下代码:
<section name="LayoutSettings" type="Sigma.Modules.ParentWindowState, Sigma" />
我已经检查了该部分的类型,它是正确的,但无法解决问题并获得上述异常。