Blog

Output of following code:

class Program {

static void Main(string[] args) {
string url = “/Contact”;
switch (url) {
case “/Home”:
Console.WriteLine(“Redirect to /Contact”);
break;
case “/home”:
Console.WriteLine(“Redirect to /home”);
break;
case “/about”:
Console.WriteLine(“Redirect to /about”);
break;
default:
Console.WriteLine(“Welcome to Home Page”);
break;
}
}

}