AppConfigHelper.cs
426 字节
using System;
using System.Windows.Forms;
using System.Xml;
namespace Common
{
public class AppConfigHelper
{
public static T GetValue<T>(string key, T defalutVal = default(T))
{
return ConfigHelper.Config.Get(key, defalutVal);
}
public static void SetValue<T>(string key, T val = default(T))
{
ConfigHelper.Config.Set(key, val);
}
}
}