Show() public method

public Show ( ) : void
return void
Exemplo n.º 1
0
 static void Main(string[] args)
 {
     Emp emp = new Emp();
     emp.Show();
     emp.Print();
     emp.Wait();
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Emp emp = new Emp();

            emp.Show();
            emp.Print();
            emp.Wait();
        }