c#

位置:IT落伍者 >> c# >> 浏览文章

.net 读取非标准配置文件的小例子


发布日期:2023年11月01日
 
.net 读取非标准配置文件的小例子
这篇文章介绍了net 读取非标准配置文件的小例子有需要的朋友可以参考一下

代码如下

复制代码 代码如下:
public static string Config(string key)
{
ExeConfigurationFileMap file = new ExeConfigurationFileMap();
fileExeConfigFilename = @"ProvidersProviderconfig";
Configuration config = ConfigurationManagerOpenMappedExeConfiguration(file ConfigurationUserLevelNone);
AppSettingsSection appsection = (AppSettingsSection)configGetSection("appSettings");
return appsectionSettings[key]Value;
}


配置文件目录结构

复制代码 代码如下:
<?xml version="" encoding="utf" ?>
<configuration>
<appSettings>
<add key="ConnectionString" value="Server=(local);Database=DB;User Id=sa;Password=" />
</appSettings>
</configuration>


调用

复制代码 代码如下:


//里面的参数为配置文件的key
string strConn=Config("ConnectionString");

               

上一篇:C#获取USB事件API

下一篇:C#实现ComboBox自动匹配字符