我试图做出类似的事情:
// 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名称。我怎么能这样做?
答案 0 :(得分:7)
改为使用数组:
bool[] abc;
// ...
if (abc[counter] == true) {
{
// some code.
}