static void Main(string[] args) { var Say = new Say(); Say.Hello(); Say.World(); Bravo(); }
static void Main(string[] args) { Say.Hello(); //new Say().World(); //Say.World(); var temp = new Say(); temp.World(); Bravo(); }
static void Main(string[] args) { Say.Hello(); Say.World(); Bravo(); }