Tools
ConfigTools.cs
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Newbe.Mahua.Plugins.iChunqiuQQBoot.Beta.Tools
{
///
/// 配置文件处理工具类
///
clast ConfigTools
{
///
/// 获取配置文件信息
///
/// key
/// 配置结果
public static string getValue(string key) {
return ConfigurationManager.AppSettings[key].ToString();
}
}
}