diff --git a/Lab1ContainersShip/Lab1ContainersShip/SetGeneric.cs b/Lab1ContainersShip/Lab1ContainersShip/SetGeneric.cs index 000768f..8cd05ad 100644 --- a/Lab1ContainersShip/Lab1ContainersShip/SetGeneric.cs +++ b/Lab1ContainersShip/Lab1ContainersShip/SetGeneric.cs @@ -109,7 +109,6 @@ namespace Lab1ContainersShip /// public T Get(int position) { - // TODO проверка позиции if(position < _places.Count && position >= 0) { return _places[position]; @@ -131,25 +130,13 @@ namespace Lab1ContainersShip { return null; } - // TODO проверка позиции } set { - /*if ((position < _places.Count && position >= 0) && _places.Count < _maxCount) - { - _places[position] = value; - } - - else - { - return; - }*/ + Insert(value, position); - // TODO проверка позиции - // TODO проверка свободных мест в списке - // TODO вставка в список по позиции } } public IEnumerable GetShips(int? maxCars = null)