Ejemplo n.º 1
0
    static void Main(string[] args)
    {
        OptionalParameterExample opExample = new OptionalParameterExample();

        opExample.printMessage("Welcome User!");
        opExample.printMessage();
    }
Ejemplo n.º 2
0
            public static void Display()
            {
                OptionalParameterExample OPE = new OptionalParameterExample();

                OPE.printMessage();
                OPE.printMessage("Welcome User !");
            }