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

人生坎坎坷坷,跌跌撞撞那是在所难免。但是,不论跌了多少次,你都要坚强地再次站起来。再试一次,成功一定属于你!
代码如下:

public static string Config(string key)
{
ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = @"Providers\\Provider.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings");
return appsection.Settings[key].Value;
}

配置文件目录结构:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ConnectionString" value="Server=(local);Database=DB;User Id=sa;Password=123" />
</appSettings>
</configuration>

调用:

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

本文.net 读取非标准配置文件的小例子到此结束。如果你看到自己的影子,同时也应感受到阳光的存在。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
.NET Core获取配置文件内容

.NET Core读取配置文件

ASP.NET Core中修改配置文件后自动加载新配置的方法详解

ASP.NET Core根据环境变量支持多个 appsettings.json配置文件

.Net Core读取Json配置文件的实现示例