2
C++のこの部分をC#に移植するのは苦労しています。私はオペレータ '||' '長い'と '長い'の型のオペランドには適用できません。では、それと同等のものは何でしょうか?C++スニペットからC#ビットワイズ演算子
while ((c <= combinations) && ((round_set & (1 << cList[c].one)) || (round_set & (1 << cList[c].two)) || (cUsed[c])))
{
fprintf(stdout, "C: %d\n", c);
c++;
}
while ((c <= combinations) && ((round_set & (1 << cList[c].one)) || (round_set & (1 << cList[c].two)) || (cUsed[c])))
{
Console.WriteLine("C: {0}", c);
c++;
}
ビンゴ、ありがとうございます! –