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.
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
1.4m articles
1.4m replys
5 comments
57.0k users