Пример #1
0
 public void AddBees(Bees newBee)
 {
     if (bees.Count >= this.maxBees)
     {
         System.Console.WriteLine("******************************************************");
         System.Console.WriteLine("Maximum Bees in the Hive!!! Extra Bee/Bees Removed!!!");
         System.Console.WriteLine("******************************************************");
     }
     else
     {
         this.bees.Add(newBee);
     }
 }