public static class Program
public static string TestInputPars (string input){
return "should be String after the ':' character:" + input;
public static string TestInputPars (bool input){
return "should be false after the ':' character:" + input;
public static string TestInputPars (DateTime input){
return "should be 2001/02010000 after the ':' character:" + input;
public static void Main()
Console.WriteLine(Program.TestInputPars("String"));
Console.WriteLine(Program.TestInputPars(false));
Console.WriteLine(Program.TestInputPars(new DateTime(2008,04,14)));