C#(dotNet 2.0)中读写配置文件

[不指定 2007/08/18 17:21 | by ipaddr ]

C#(dotNet 2.0)中读写配置文件

dotNet已推荐使用新的方法读写配置文件,假设配置文件如下:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
 <appSettings>
  <add key="DBPath" value="data.mdb" />
 </appSettings>
</configuration>

首先,加入对System.configuration的引用(在资源管理器中,加入引用)

使用如下的方法读入配置:

using System.Configuration;

private Configuration config;
private AppSettingsSection appConfig;

config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
appConfig = config.AppSettings;
MessageBox.Show(appConfig.Settings["DBPath"].Value);

分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]