如何将object转换成原来的类型。。eg:list<Model> lst=new List<Model>();object obj=lst;obj再转换成list<Model>类型。。。 [解决办法]Convert.ChangeType(obj, typeof(YourType));