Пример #1
0
        static void Main(string[] args)
        {
            Employee myEmp = new Employee("Marvin", 465, 30000);

            myEmp.giveBonus(1000);
            myEmp.DisplayStats();
            myEmp.Name = "Maving the great the great assassin of the world";
            myEmp.DisplayStats();

            ReadKey();
        }