Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
919 views
in Technique[技术] by (71.8m points)

string - How to create variables with dynamic names in C#?

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...