C# 读取 appconfig文件配置数据库连接字符串,和配置文件



--方式1

--方式2



1、首先先在工程里添加system.configuration.dll程序集的引用

2、写代码读取配置参数

方法一: string connStr= System.Configuration.ConfigurationManager.ConnectionStrings["strCon"].ToString();

方法二: string connStr= ConfigurationManager.AppSettings["ConnectionString"];

你可能感兴趣的:(C# 读取 appconfig文件配置数据库连接字符串,和配置文件)