当前位置:首页 > 大杂烩 > 正文内容

c#读取配置文件,C#读xml配置文件,c# 配置文件,C# 读取xml

高老师6年前 (2018-11-16)大杂烩2343

(1).右键项目->添加->应用程序配置文件,此时成功创建1个基于Xml的配置文件.例如我的文件

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="app.year" value="2018"/>
    <add key="app.month" value="11"/>
    <add key="app.day" value="08"/>
    <add key="app.path" value="D:\Program Files\PremiumSoft\Navicat Premium 12\navicat.exe"/>
    <add key="app.update" value="https://www.gaojiufeng.cn"/>
  </appSettings>
</configuration>

(2).右键添加引用System.Configuration,System 并且引用

using System.Configuration;

(3).读取配置项目

int  appYear = int.Parse(ConfigurationManager.AppSettings["app.year"]);
int  appMonth = int.Parse(ConfigurationManager.AppSettings["app.month"]);
int  appDay = int.Parse(ConfigurationManager.AppSettings["app.day"]);
string appPath = ConfigurationManager.AppSettings["app.path"];

 

想用XML的也可以考虑使用配置文件的XML.操作简单。

扫描二维码推送至手机访问。

版权声明:本文由高久峰个人博客发布,如需转载请注明出处。

本文链接:http://blog.20230611.cn/post/513.html

分享给朋友:

“c#读取配置文件,C#读xml配置文件,c# 配置文件,C# 读取xml” 的相关文章

Git本地仓库学习

Git本地仓库学习

1.全局用户信息设置 git  config  --global  user.name  gaojiufeng git  config  --global  user.email  392223903...

Application的错误使用

Application的错误使用

Application 对象用于存储和访问来自任意页面的变量,类似 Session 对象。不同之处在于所有的用户分享一个 Application 对象,而 session 对象和用户的关系是一一对应的。很多的书籍中介绍的Application对象都喜欢以统计在线人数来介绍Application 对象...

Git推送文件到远程仓库

Git推送文件到远程仓库

1.远程仓库的协作模式开发者把自己最新的版本推到线上仓库,同时把线上仓库的最新代码,拉到自己本地即可2.注册git帐号国外: http://www.github.com国内: http://git.oschina.net2.在码云创建项目,不要初始化readmegit push https://gi...

Git从远程仓库更新文件

Git从远程仓库更新文件

 git   pull  https://git.oschina.net/392223903/learn.git   master   换为您的git地址...

Git日志查看和版本切换

Git日志查看和版本切换

日志查看:git log版本切换:方式1:git  reset  --hard  HEAD^   倒退一个版本git  reset  --hard  HEAD^^  倒退两个版本方式2:(版本号的形式,建议版本号码补充完...

c#关闭计算机的代码

c#关闭计算机的代码

    1.关机Process.Start("shutdown", "-s -t 0");    2. 注销  Proc...