Given this property:
Public Overridable Property Collecions As ICollection(Of String)
Which we could instantiate like this:
variable.Collecions = New List(Of String)
Or like this:
variable.Collecions = New LinkedList(Of String)
The following question arises:
Is not there an easy way to find all types that implement ICollection
, and therefore can be instantiated?
I expected to find them through the object examiner, but I have not seen how. My searches on google have not thrown too much light either.
Thanks in advance.