标签:pre 无法 http row except 不能 str tail type
直接奖泛型转为T是不能转换的 要先转Object
例:
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(""); }
标签:pre 无法 http row except 不能 str tail type
原文地址:http://www.cnblogs.com/lonelyxmas/p/6869978.html