коммит
This commit is contained in:
parent
203249781c
commit
bec2383a81
@ -109,7 +109,6 @@ namespace Lab1ContainersShip
|
||||
/// <returns></returns>
|
||||
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<T> GetShips(int? maxCars = null)
|
||||
|
Loading…
Reference in New Issue
Block a user