static void Main(string[] args) { OptionalParameterExample opExample = new OptionalParameterExample(); opExample.printMessage("Welcome User!"); opExample.printMessage(); }
public static void Display() { OptionalParameterExample OPE = new OptionalParameterExample(); OPE.printMessage(); OPE.printMessage("Welcome User !"); }