Answers for "c# or"

C#
17

c# or

// The or statement in C# is ||
if (a == b || a == c)
{
  // Do something
}
Posted by: Guest on February-22-2020
1

c# or

if (2 > 1 || 1 == 1) 
{ 
	// 2 is greater than 1 and 1 is equal to 1!
}
Posted by: Guest on February-07-2021
1

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
Posted by: Guest on November-03-2020
1

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
}
Posted by: Guest on April-12-2021
4

what is the or symbol in C#

//The or Symbol Is ||
Posted by: Guest on March-11-2020
0

c# or

(a == b || a == c) //Finally a question nobody's freakin' answered!
Posted by: Guest on May-18-2021

C# Answers by Framework

Browse Popular Code Answers by Language