static public object ChangeType(object value, Type type) { if (value == null && type.IsGenericType) return Activator.CreateInstance(type); if (value == null) return null; if (type == value.GetType()) return value; if (type.IsEnum) { if (value is string) return Enum.Parse(type, value as string); else return Enum.ToObject(type, value); } if (!type.IsInterface && type.IsGenericType) { Type innerType = type.GetGenericArguments()[0]; object innerValue = ChangeType(value, innerType); return Activator.CreateInstance(type, new object[] { innerValue }); } if (value is string && type == typeof(Guid)) return new Guid(value as string); if (value is string && type == typeof(Version)) return new Version(value as string); if (!(value is IConvertible)) return value; return Convert.ChangeType(value, type); }
今天在使用PetaPoco處理Nullable的時候出現了一個類型轉化的問題,雖然最後發現是資料庫類型錯誤,但在搜尋過程中找到了這個通用的類型轉換方法,覺得不錯,留下來,也希望對更多的朋友提供協助!
原文連結:http://www.cnblogs.com/genson/archive/2008/10/08/1306099.html