or in C#

C#
//The AND Symbol is &// The Or Symbol Is   ||if((number > 10) || (number < 0))    Console.WriteLine("Hey! The number should be 0 or more and 10 or less!");else    Console.WriteLine("Good job!");// The or statement in C# is ||
if (a == b || a == c)
{
  // Do something
}
Source

Also in C#: