diff --git a/Sailboat/Sailboat/SetGeneric.cs b/Sailboat/Sailboat/SetGeneric.cs index dd3b9d1..e719d1d 100644 --- a/Sailboat/Sailboat/SetGeneric.cs +++ b/Sailboat/Sailboat/SetGeneric.cs @@ -8,17 +8,37 @@ namespace Sailboat.Generics { internal class SetGeneric where T : class { + /// + /// Массив объектов, которые храним + /// private readonly T?[] _places; + /// + /// Количество объектов в массиве + /// public int Count => _places.Length; + /// + /// Конструктор + /// + /// public SetGeneric(int count) { _places = new T?[count]; } - + /// + /// Добавление объекта в набор + /// + /// Добавляемая лодка + /// public int Insert(T boat) { return Insert(boat, 0); } + /// + /// Добавление объекта в набор на конкретную позицию + /// + /// Добавляемая лодка + /// Позиция + /// public int Insert(T boat, int position) { int nullIndex = -1, i; @@ -50,6 +70,11 @@ namespace Sailboat.Generics _places[position] = boat; return position; } + /// + /// Удаление объекта из набора с конкретной позиции + /// + /// + /// public bool Remove(int position) { if (position < 0 || position >= Count) @@ -60,6 +85,11 @@ namespace Sailboat.Generics _places[position] = null; return true; } + /// + /// Получение объекта из набора по позиции + /// + /// + /// public T? Get(int position) { if (position < 0 || position >= Count)