Skip to main content

Ternary Operators

with throw

string currentColor = farbe;
Console.WriteLine(
(currentColor == "Rot") ? "Anhalten" :
(currentColor == "Gelb" ? "Warten" :
(currentColor == "Grün") ? "Fahren" :

throw new InvalidOperationException("Ungültige Farbe")));

with ReadLine

static void PwAbfrage()
{
Console.Write("Eingabe PW: ");
Console.WriteLine(
Console.ReadLine() == "1234"
? "Zugriff erlaubt"
: "Zugriff verweigert");
}

with formatted String

int num = 5;
Console.WriteLine("Die Zahl ist {0} als 10", (num < 10) ? "kleiner" : "größer");