bool の配列を作り、それらがすべて true かどうかを1行で判定する方法
Form1.cs
int i = 100;
bool[] bools = new bool[3];
bools[0] = i > 50;
bools[1] = i < 200;
bools[2] = i * 2 == 300;
bool b = bools.All(result => result == true);
if(b == true) MessageBox.Show("OK");
else MessageBox.Show("NOT");
出力結果:NOT