欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#访问应用程序配置文件的方法

程序员文章站 2023-12-15 20:28:10
app.config中写(注意c#中的应用程序配置文件名不能修改)复制代码 代码如下:

app.config中写(注意c#中的应用程序配置文件名不能修改)

复制代码 代码如下:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <connectionstrings>
    <add name="url" connectionstring="http://www.hao123.com"/>
    <add name="ip" connectionstring="192.168.1.107"/>
  </connectionstrings>

  <appsettings>
    <add key="con" value="http://localhost/web"/>
  </appsettings>
</configuration>


 

在控制台应用程序中访问,代码如下:

首先添加system.configuration.dll引用

然后引入命名空间 :using system.configuration;

复制代码 代码如下:

 string constring = configurationmanager.appsettings["con"];
 console.writeline(constring);         
  string url = configurationmanager.connectionstrings["url"].connectionstring;
  console.write(url);

上一篇:

下一篇: