c# NameValueCollection类读取配置信息

复制代码 代码如下:


<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section
name="StartParameters"
type="System.Configuration.NameValueSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</configSections>
<StartParameters>
<add key="IPAddress" value="127.0.0.1"/>
<add key="Port" value="13000"/>
</StartParameters>
</configuration>


其中section节点的name值是自己定义的,在此我定义为“StartParameters”,然后添加上方声明的节点,并在节点内部添加两个测试项“<add key="IPAddress" value="127.0.0.1"/>”和“<add key="Port" value="13000"/>”;配置文件定义完毕。

2.打开要读取配置信息的代码文件,添加两个引用,分别是:

复制代码 代码如下:


using System.Configuration;
using System.Collections.Specialized;


定义一个NameValueCollection类型的变量:

复制代码 代码如下:


NameValueCollection _table = null;
_table = (NameValueCollection)ConfigurationManager.GetSection("StartParameters");
String ipAddress =_table["IPAddress"].ToString();
String port = _table["Port"].ToString();


上句中的“StartParameters”就是在配置文件中定义的name值。
输出ipAddress 和port 的值,分别是:

复制代码 代码如下:


“127.0.0.1”
“13000”

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjfzgw.html