Is the CollectionBase class still supported?

江枫思渺然 提交于 2019-11-27 02:54:29

问题


I want to create a class that inherits from CollectionBase, but it seems that it does not support LINQ extensions!

Is it still supported? Or is there an alternative solution?


回答1:


It is still supported, but it is obsolete. You should always prefer to use the collections defined in the System.Collections.Generic or the System.Collections.ObjectModel namespaces, instead.

You can inherit from one of the generic collections to create your own custom, strongly-typed collection, as well. And it will have full support for LINQ, since they already implement IEnumerable<T>.
Either List<T> or Collection<T> are good options for your case.

Avoid the non-generic collections like CollectionBase, ArrayList, and HashTable if at all possible. There is a performance penalty to using them, and they offer few advantages (if any!) over the generic versions that were introduced in more recent versions of the framework.




回答2:


Linq extensions are written for IEnumerable<T> (Generic) and CollectionBase (Non-generic) does not inherit from it. That is why you are not able to use Linq on it.

Use System.Collections.ObjectModel.Collection<T> instead.



来源:https://stackoverflow.com/questions/5704776/is-the-collectionbase-class-still-supported

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!