what is the or symbol in C#

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

Also in C#: