ConfigurationManager类

时间:2010-07-17 14:46:09

标签: c# .net frameworks configurationmanager

如何使用COnfigurationManager类读取和写入设置文件?

3 个答案:

答案 0 :(得分:4)

我可以尝试在这里给出细分,但实际上以下链接全部由Jon Rista编写,是我发现的有关System.Configuration命名空间的最佳资源。

Unravelling the Mysteries of .NET 2.0 Configuration

Decoding the Mysteries of .NET 2.0 Configuration

Cracking the Mysteries of .NET 2.0 Configuration

答案 1 :(得分:3)

有一件事可能会让你感到震惊的是,要访问ConfigurationManager类,您必须手动添加对System.Configuration的引用。 System.Configuration命名空间分为多个程序集 - 默认情况下,您只能获得它的一部分。

Space Cracker发布了一些很好的链接,但也有一种方法可以编写强类型的配置部分,几年前我在博客中写道 - Configuring a .NET 2.0 Application Using the ConfigurationSection class。我从来没有见过其他人使用过强类型的ConfigurationSections,但是一旦你习惯了它们就会非常有用。

答案 2 :(得分:0)