bool condition1 = true;
bool condition2 = false;

bool resultAnd = condition1 && condition2; // false
bool resultOr = condition1 || condition2;  // true
bool resultNot = !condition1;              // false

Console.WriteLine($"AND: {resultAnd}, OR: {resultOr}, NOT: {resultNot}");