vote up 1 vote down star

I'd like to populate an arraylist by specifying a list of values just like I would an integer array, but am unsure of how to do so without repeated calls to the "add" method.

For example, I want to assign { 1, 2, 3, "string1", "string2" } to an arraylist. I know for other arrays you can make the assignment like:

int[] IntArray = {1,2,3};

Is there a similar way to do this for an arraylist? I tried the addrange method but the curly brace method doesn't implement the ICollection interface.

flag

Please explain why you want to use an ArrayList, instead of one of the modern collections. – Jay Bazuzi Sep 17 '08 at 21:47
I'm relatively new to using C# and the ArrayList collection was the first collection I learned to use. If you have a better suggestion of what I could be using, I'd love to hear it. – Lyndon Sep 17 '08 at 21:54
"modern" collections may not exist if you have to support/maintain 1.1 app – Sunny Sep 17 '08 at 21:59

6 Answers

vote up 2 vote down check

Array list has ctor which accepts ICollection, which is implemented by the Array class.

object[] myArray = new new object[] {1,2,3,"string1","string2");
ArrayList myArrayList = new ArrayList(myArray);
link|flag
vote up 3 vote down

Depending on the version of C# you are using, you have different options.

C# 3.0 has collection initializers, detail at Scott Gu's Blog

Here is an example of your problem.

ArrayList list = new ArrayList {1,2,3};

And if you are initializing a collection object, most have constructors that take similar components to AddRange, although again as you mentioned this may not be an option.

link|flag
vote up 0 vote down

I assume you're not using C# 3.0, which has collection initializers. If you're not bothered about the overhead of creating a temp array, you could do it like this in 1.1/2.0:

ArrayList list = new ArrayList(new object[] { 1, 2, 3, "string1", "string2"});
link|flag
vote up 0 vote down

(kind of answering my own question but...)

The closest thing I've found to what I want is to make use of the ArrayList.Adapter method:

object[] values = { 1, 2, 3, "string1", "string2" };
ArrayList AL = new ArrayList();
AL = ArrayList.Adapter(values);

//or during intialization
ArrayList AL2 = ArrayList.Adapter(values);

This is sufficient for what I need, but I was hoping it could be done in one line without creating the temporary array as someone else had suggested.

link|flag
vote up 1 vote down

Your comments imply you chose ArrayList because it was the first component you found.

Assuming you are simply looking for a list of integers, this is probably the best way of doing that.

List<int> list = new List<int>{1,2,3};

And if you are using C# 2.0 (Which has generics, but not collection initializers).

List<int> list = new List<int>(new int[] {1, 2, 3});

Although the int[] format may not be correct in older versions, you may have to specify the number of items in the array.

link|flag
vote up 0 vote down

try to add similer types in arraylist.

http://csharp.net-informations.com/collection/csharp-arraylist.htm

If you want to know more about implicit conversion :

http://csharp.net-informations.com/language/csharp-type-conversions.htm

bton.

link|flag

Your Answer

Get an OpenID
or

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