ArrayList Columns

  • Thread starter Thread starter Kent Ogletree
  • Start date Start date
K

Kent Ogletree

I have an ArrayList that is filled from an IDataReader. In one function I
need to add one column to this ArrayList. Since the ArrayList is filled at a
lower level in the application and reused by several functions within the
application I do not want to modify it in the stored procedure.

Is there a way to add a collumn to an ArrayList that I have not found yet?

Kent
 
ArrayLists don't have columns. An ArrayList is a collection of objects (and
they don't have to be of the same type).
 
Kent,

I ask this question about this question forever why you are using a hugh
complex object that you have to build yourself when there is a datatable
that is made for it?

Cor
 

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

Similar Threads

ArrayList 1
ArrayList memory problem 3
newbie: ArrayList memory leak? 3
Arraylist 3
Resizing an arraylist 5
DataGrid and ArrayList 1
Datagridview and arraylist 2
Creating ArrayList to store data 3

Back
Top