Beispiel #1
0
 public void Add(TowerInfo tower)
 {
     if (!towers.Any(x => x.Id == tower.Id && x.Lac == tower.Lac))
     {
         Console.WriteLine($"Added {tower.ToString()}");
         towers.Add(tower);
         return;
     }
 }