C#读写操作app.config中的数据

Posted 马杏争1994

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#读写操作app.config中的数据相关的知识,希望对你有一定的参考价值。

技术分享
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <connectionStrings>
    <add name="sqlserver" connectionString="Data Source=WT01395\sqlexpress;Initial Catalog=mydb;Integrated Security=True"/>
  </connectionStrings>
  <appSettings>
    <add key=""/>
  </appSettings>
</configuration>
app.config
引入Configuration的 References库
读取
string
conStr = ConfigurationManager.ConnectionStrings["sqlserver"].ToString();
用于保存数据
写入
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); config.AppSettings.Settings.Remove("lastLoginUser"); config.AppSettings.Settings.Add("lastLoginUser", userName); config.Save();
只会把值写入到OesShareUI.exe.Config 不会写在 源文件上

  






以上是关于C#读写操作app.config中的数据的主要内容,如果未能解决你的问题,请参考以下文章

C# 读写App.config配置文件的方法

C# 手动读写app config 的源码

C# 读写App.config配置文件的方法

C# 读写App.config配置文件的方法

c# Windows服务是不是(可能)使用app.config

如何从 C# 读取 VB.NET 项目中的“app.config”文件