xxxxxxxxxx
public static string GetResult(int number)
{
switch (number)
{
case 1:
return "One";
case 2:
return "Two";
case 3:
return "Three";
default:
return "Other";
}
}
xxxxxxxxxx
return a switch
{
1 => "lalala",
2 => "blalbla",
3 => "lolollo",
_ => "default"
};