roka113
0
Q:

c# negation

// The or statement in C# is ||
if (a == b || a == c)
{
  // Do something
}
14
//The or Symbol Is ||
4
bool passed = false;
Console.WriteLine(!passed);  // output: True
Console.WriteLine(!true);    // output: False
1

New to Communities?

Join the community