55944d732a
排除 CreateModel.bat(含明文sa密码与本地服务器名,未入库)
25 lines
506 B
C#
25 lines
506 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SgManager.AI
|
|
{
|
|
public class ConfigAppSetting
|
|
{
|
|
public static double getConfigAppSetting(String name)
|
|
{
|
|
try
|
|
{
|
|
return Convert.ToDouble(System.Configuration.ConfigurationManager.AppSettings[name]);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|