static void Main(string[] args)
        {
            WelcomeDelegate WelcomeDelegate = WelcomeMethod;

            WelcomeDelegate("param");
            Console.Read();
        }
        static void Main(string[] args)
        {
            //WelcomeDelegate welcomeDelegate = new WelcomeDelegate(WelcomeMethod);

            WelcomeDelegate welcomeDelegate2 = WelcomeMethod;

            welcomeDelegate2("CTS");
        }