using System;
public class Program
{
public static void Main()
var t = DateTime.Today.Day % 2;
switch(t)
case 0:
goto case 1;
case 1:
if (t != 1)
Console.WriteLine("hello after goto");
break;
}