C#将字符串转换为bool变量的名称

时间:2015-07-10 18:11:31

标签: c# string boolean

我试图做出类似的事情:

    // int counter; - this is changing in ther other parts of program
    bool abc1; bool abc2; bool abc3; bool abc4;

    if("abc" + counter == true)
    {
     //some code
    }

无论如何,我需要将string和int转换为bool名称。我怎么能这样做?

1 个答案:

答案 0 :(得分:7)

改为使用数组:

bool[] abc;

// ...

if (abc[counter] == true) {
{
    // some code.
}