static void Main()
 {
     Graduate Kim = new Graduate();
     Assistant Lee = new Assistant();
     Professor Park = new Professor();
     Suwi Choi = new Suwi();
     Register(Kim);
     Register(Lee);
     Register(Park);
     Register(Choi);
 }
示例#2
0
        static void Main(string[] args)
        {
            Graduate  Kim  = new Graduate();
            Assistant Lee  = new Assistant();
            Professor Park = new Professor();
            Suwi      Choi = new Suwi();

            Register(Kim);
            Register(Lee);
            Register(Park);
            Register(Choi);
        }