1 2 3 4 5 6 7 8 9 10 11 12 13 14 | int day = 4; switch (day) { case 6: Console.WriteLine( "Today is Saturday." ); break ; case 7: Console.WriteLine( "Today is Sunday." ); break ; default : Console.WriteLine( "Looking forward to the Weekend." ); break ; } // Outputs "Looking forward to the Weekend." |