有人可以向我解释如何使用ConfigurationManager .config文件中的子部分吗?
这是我到目前为止尝试过的(不工作):
这是我的.config: http://pastebin.com/kxYGnD2j(抱歉,我正在努力使用代码格式)
Main.cs: http://pastebin.com/mWggzbD4
谢谢!
------ ------- EDIT
知道了!我正在寻找“SectionGroup”:http://msdn.microsoft.com/en-us/library/system.configuration.configurationsectiongroup.aspx
只需更改.config,我的Main.cs就完美了!
谢谢你们!
P.S。我现在不能自行回答,要在6个小时内完成。
答案 0 :(得分:2)
知道了!我正在寻找“SectionGroup”:http://msdn.microsoft.com/en-us/library/system.configuration.configurationsectiongroup.aspx
只需更改.config,我的Main.cs就完美了!
谢谢你们!
答案 1 :(得分:1)
我认为您需要在配置文件中更改对NameValueSectionHandler的引用。它应该如下:type="System.Configuration.NameValueSectionHandler,System"
其他一切看起来都很好。