我的XML文件

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

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



 
  
 


首先,加入对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);

你可能感兴趣的:(xml,encoding,c#)