主题:如何在.Net中读取配置文件
我用的开发工具是:VS.NET2005,.Net2.0版,语言为C#,开发一个Windows桌面程序
1、读取配置文件使用语句:System.Configuration.ConfigurationSettings.AppSettings["USER"],编译就会提示:‘System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings' 的警告;
2、我想使用ConfigurationManager来读取配置文件,MSDN中讲这个类属于System.Configuration命名空间,可是我怎么找也找不到。请问这个类怎么使用,它属于哪个命名空间。
3、或者有没有更好的办法在.Net2.0版本中读取配置文件,并且编译没有警告。
谢谢!!!
1、读取配置文件使用语句:System.Configuration.ConfigurationSettings.AppSettings["USER"],编译就会提示:‘System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings' 的警告;
2、我想使用ConfigurationManager来读取配置文件,MSDN中讲这个类属于System.Configuration命名空间,可是我怎么找也找不到。请问这个类怎么使用,它属于哪个命名空间。
3、或者有没有更好的办法在.Net2.0版本中读取配置文件,并且编译没有警告。
谢谢!!!