I am coding a C# forms application where I am using a class with a PropertyGrid
. I am needing to have Lists
that have nested Lists
, and some Lists
have other objects that need to be selected.
My question is this: Do I have to use a CollectionBase
for collections? All of the tutorials I have seen online use a CollectionBase
, however I have tried a simple test application with a List
, and the List
works correctly so far.
I am asking this so that I do not get in depth into my code, and realize that a CollectionBase
is needed for certain PropertyGrid
actions.
Thanks.