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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top