码迷,mamicode.com
首页 > 其他好文 > 详细

ConfigurationManager

时间:2014-06-04 19:03:39      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

ConfigurationManager读取和写入

 
  提供对客户端应用程序配置文件的访问
  通过引入System.Configuration.dll可以用ConfigurationManager类来读取项目中保存在App.config中的配置信息,如:
 
bubuko.com,布布扣
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="Number0" value="9759436"/>
    <add key="Number1" value="9759437"/>
    <add key="Number2" value="9759438"/>
    <add key="Number3" value="9759439"/>
  </appSettings>
    <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
</configuration>
bubuko.com,布布扣

 

 
 
后台:
 
读取数据:  
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 = "65434";
cfa.Save();

 

 
bubuko.com,布布扣

ConfigurationManager,布布扣,bubuko.com

ConfigurationManager

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/infly123/p/3759611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!