由于项目技术需要,需通过反射动态构造ObservableCollection<T>,以前没试过,经过网上资料,已经实现了List<T>的反射构造代码:Type t = Type.GetType("System.Collections.Generic.List`1[System.Int32]");
经测试可行,t不是null。
但是如果换成ObservableCollection的话,执行后t就是null,不知道有谁知道怎么样实现不?
你可以从List<T> 再转换成ObservableCollection<T>
http://blog.csdn.net/huangliangjie/article/details/6677315