vote up 1 vote down star
1

I'm using a datatable where for each row I want to store some 3 or 4 fields, the fields are of different types, best case number of fields is 3, and I want to note the row_index (of the row in the datatable) as I need it.

So like this I want to store the values (for the fields) for all the rows in the datatable.

Please give me an example, code snippet, or more information about how to structure/access this information for any nth row with the row index (which is also stored)

flag

52% accept rate
Although the original title would indicate a dupe, what he is asking for (including the ability for the items to hold an unknown umber of values/properties) makes it a unique question that just needs proper revision. – TheTXI Apr 14 at 12:17
Ppl Can u pls help in this ..? It's urgent. I need a code snippet for declaring and accessing a field for any element in the array. I'm not sure if i can use ArrayList or List.. !!! – stack_pointer is EXTINCT Apr 14 at 13:22

4 Answers

vote up 3 vote down

Arrays must be assigned a length, to allow for any number of elements: use the List class.

For example:

List<int> myInts = new List<int>();
myInts.Add(5);
myInts.Add(10);
myInts.Add(11);
myInts.Count // = 3

To store many values inside of the list, I would suggest creating your own class and storing that. But if you don't want to, you can have a list of lists of objects.

List<List<object>> myList = new List<List<object>();
myList.Add(new List<object>() { 1, "APPLE", "red", "sweet" } );
link|flag
And he said array, so I doubt he wants something that does more than what an array could (outside of unknown length). Now, that's not to say he might not need something better. – Samuel Apr 14 at 12:16
using object is not such great advice; kind of defeats the purpose of using a strongly typed list! – Mitch Wheat Apr 14 at 12:17
And ArrayList or OrderedDictionary are strongly typed? – Samuel Apr 14 at 12:20
I can see several problems with this answer: 1) as Mitch said, you can't access individual elements by their index (you would have to iterate through if I am not mistaken?). 2) This doesn't the part of the question concerning each element having an indefinite amount of "values" or "properties" – TheTXI Apr 14 at 12:22
That's assuming 1 & 4 are indexes. And I updated to fix #2. – Samuel Apr 14 at 12:24
show 4 more comments
vote up 1 vote down

If you have absolutely no idea what fields can be in each element, your only choice is to create a property bag (map/dictionary) of key value pairs.

You can use an ArrayList or an OrderedDictionary, which allow indexing by ordinal, to hold each property bag element.

link|flag
vote up 0 vote down

You can use XMLDocument to store data. It is flexible enough to store and manipulate data even if you only need to use it in memory.

link|flag
vote up 0 vote down

Hi,

I'm using a datatable where for each row i want to store some 3 or 4 fields...

fields are of different types

(best case:: no:of fields is 3) and i want to note the row_index (of the row in the datatable) as i need it.

so like this i want to store the values(for the fields) for all the rows in the datatable...

Pls give me an e.g (of this scenario)//code snippet// and how to access the fields for any ith row with the row index(which's also stored)

link|flag
For future reference, please make any updates to your original question in the original question using the Edit function. This space is reserved for answers (I don't want you getting voted down just because you are not familiar with SO). – TheTXI Apr 14 at 12:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.