How to create variables with dynamic names in C#?

cagin picture cagin · Jul 18, 2009 · Viewed 10.9k times · Source

I want to create a var in a for loop, e.g.

for(int i; i<=10;i++)
{
    string s+i = "abc";
}

This should create variables s0, s1, s2... to s10.

Answer

Frans picture Frans · Jul 18, 2009

You probably want to use an array. I don't know exactly how they work in c# (I'm a Java man), but something like this should do it:

string[] s = new string[10];
for (int i; i< 10; i++)
{
    s[i] = "abc";
}

And read http://msdn.microsoft.com/en-us/library/aa288453(VS.71).aspx