or operator c# code example

Example 1: c# or

// The or statement in C# is ||
if (a == b || a == c)
{
  // Do something
}

Example 2: or in C#

// The Or Symbol Is   ||

Example 3: c# and

//The AND (&&) statement will return true if both sides are true, 
//otherwise it returns false

if (true && true) { //checks if both sides are true
  Console.WriteLine("Both are true");
}

if (false && true) {
  Console.WriteLine("One or more is false");
}

//Output:
//Both are true

Example 4: c# or

//the or operator in c sharp is "||" (key to the left of 1 btw ;))
if(a = 0 || b = 0)
{
  //a or b is 0
}

Example 5: c# or

if (2 > 1 || 1 == 1) 
{ 
	// 2 is greater than 1 and 1 is equal to 1!
}

Example 6: c# or

if (true || false) { //Checks if either side is true
  Console.WriteLine("One is true");
}

if (false || false) {
  Console.WriteLine("Both are false");
}

//Output:
//One is true