public static T GetValue<T>(string inValue)
{
if (typeof(T) == typeof(Bitmap))
{
return (T)(Object)new Bitmap(inValue);
}
else
{
//一般类型
return (T)Convert.ChangeType(inValue, typeof(T));
}
throw new Exception("");
}
文档更新时间: 2022-02-26 11:42 作者:admin