Visual Studio is telling me that I can't apply an or statement in my switch.
Can I even apply that to my switch at all?
Second_Chance_2 = System.Console.ReadLine();
switch (Second_Chance_2)
{
case "":
Console.WriteLine("Error");
break;
case "Alpha Area" || "alpha area":
System.Console.WriteLine("Now The Real Game Begins");
break;
default:
Console.WriteLine("Error");
break;
}