What controller is best to...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I want a user to create a list. The list is a one row, multicolumn (or one
volumn, multirow) The user should be able to add and remove items on the list.

What do I best use?

Regards
Stijn
 
Stijin,

Right now, I would recommend using an ArrayList. If you are going to
expose the list publically, and it is of one type, then I would recommend
that you derive a class from CollectionBase and create strongly typed
accessors.

If you have a need for lookups (like by a column name) instead of an
ordinal, I recommend that you use a Hashtable.

Hope this helps.
 
Back
Top