C#后端WEBAPI的配置文件(web.config)内容的使用方法

汪兴为
2023-12-01
  1. 在web.config中编写配置信息
<configuration>
	<appSettings>
		<!--班次ID配置-->
	  	<add key="ShiftIDZao" value="2"/>
	  	<add key="ShiftIDZhong" value="3"/>
	  	<add key="ShiftIDWan" value="1"/>
	</appSettings>
</configuration>
  1. 使用这个配置
//CommonFunction.ObjectToInteger() -----此为公共方法将string类型转int类型
int zao = CommonFunction.ObjectToInteger(System.Configuration.ConfigurationManager.AppSettings["ShiftIDZao"]);
int zhong = CommonFunction.ObjectToInteger(System.Configuration.ConfigurationManager.AppSettings["ShiftIDZhong"]);
int wan = CommonFunction.ObjectToInteger(System.Configuration.ConfigurationManager.AppSettings["ShiftIDWan"]);
 类似资料: