Friends, I must create a series of ArrayLists, each containing objects of unknown origin, with each instance assigned to a separate local variable.

So far, so good... But I also need each local variable's name to follow a very specific pattern: the name should begin with "oArr", followed by one or more digits reflecting that particular array's position within the sequence. Furthermore, I will not know at compile-time how many of these arrays - and hence, how many local variables - I will be needing!

It strikes me that this is perhaps a problem that could be solved by the availability of dynamic types in C# 4.0, however I am not at all familiar with their use. How might I take code like this...

int i=0;
foreach(something)
{
    ArrayList oArr+i=new ArrayList();
    i++;
}

...and turn it into something that matches the criteria outlined above and actually compiles?

Alternately, is there a more simple, sane approach to this problem?

link|improve this question

52% accept rate
5  
You have not provided enough information for us to help you. – ChaosPandion Jul 1 '10 at 5:02
4  
What are you trying to achieve by changing the variable name? – Kiranu Jul 1 '10 at 5:04
3  
Ah, the old "unreferenceable variable" pattern! Beware, many solutions to this result in predictable variable names, allowing savvy clients to reference the variable by use of a variable that contains the variable variable's varying name... To avoid this, either use a reliable external source of true random values, or mandate that clients use varying variable names for the variables holding their varying variable variable name values. – Shog9 Jul 1 '10 at 5:20
1  
@Shog9 - I had to read that 3 times... – ChaosPandion Jul 1 '10 at 5:22
3  
C# 4 and ArrayList is a bit odd. If you're using C# 2 or newer, you should use List<T> instead of ArrayList. – Brian Rasmussen Jul 1 '10 at 5:23
show 1 more comment
feedback

3 Answers

You cannot change the name of a variable during execution, since the code (even c# code) was compiled with a certain variable name. If you could change the name during execution then it would cause problems.

For example, if the language allowed to change variable names then when you try to access a variable named 'var1' the compiler has no idea if during execution that variable name changed and now is called 'x'.

Something you could try to do is to allow your program to dynamically compile some code but this is probably not the right solution to your problem. If you explain better what you need then we could provide you with an effective solution.

Hope this helped

EDIT: Seeing your editions I can tell you that it is impossible with the approach you are currently using. I could suggest you the following:

int i = 0;
List<ArrayList> masterList = new List<ArrayList>();
foreach (something)
{
     masterList.Add(new ArrayList());
     i++;
}

If what you need is to have each ArrayList to have a specific name you can recall you can use a dictionary:

int i = 0;
Dictionary<string, ArrayList> masterList = new Dictionary<string, ArrayList>();
foreach (something)
{
     masterList.Add("oArr" + i.ToString(), new ArrayList());
     i++;
}
ArrayList al = masterList["oArr1"];
link|improve this answer
feedback

Would this work for you?

var arrayLists = new List<ArrayList>();
var i = 0;
foreach(var item in list)
{
    arrayLists.Add(new ArrayList());
    i++;
}

Then you can access each array list by index.

link|improve this answer
feedback

Use a List of ArrayLists.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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