首页 > 代码库 > ConfigurationManager
ConfigurationManager
ConfigurationManager读取和写入
提供对客户端应用程序配置文件的访问
通过引入System.Configuration.dll可以用ConfigurationManager类来读取项目中保存在App.config中的配置信息,如:
<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="Number0" value=http://www.mamicode.com/"9759436"/> <add key="Number1" value=http://www.mamicode.com/"9759437"/> <add key="Number2" value=http://www.mamicode.com/"9759438"/> <add key="Number3" value=http://www.mamicode.com/"9759439"/> </appSettings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> </configuration>
后台:
读取数据:
private void Button_Click_1(object sender, RoutedEventArgs e) { int i = int.Parse(ConfigurationManager.AppSettings["Number2"]); this.txtMsg.Text = i.ToString(); }
写入数据:
Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); cfa.AppSettings.Settings["Number2"].Value = http://www.mamicode.com/"65434"; cfa.Save();
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。