PIBD-12_Morozov_D.V. LabWork№4 #13

Closed
MorozovDanil wants to merge 15 commits from Lab4_base into Lab3_base
Showing only changes of commit c39ce29437 - Show all commits

View File

@ -94,6 +94,8 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
// }
// _collection.RemoveAt(position);
// return true;
//допка
if (!_collection.ContainsKey(position))
{
return false;
@ -106,6 +108,9 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
/// Находит первую пустую позицию в словаре
/// </summary>
/// <returns>Индекс первой пустой позиции или -1, если такой не найдено</returns>
//допка
private int FindFirstNullPosition()
{
for (int i = 0; i < _maxCount; i++)