PIBD-12_Morozov_D.V. LabWork№5 #16

Closed
MorozovDanil wants to merge 11 commits from Lab5_base into Lab4_base
Showing only changes of commit ba1c4fe9a9 - Show all commits

View File

@ -18,7 +18,6 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
/// </summary>
private readonly List<T?> _collection;
/// <summary>
/// Максимально допустимое число объектов в списке
/// </summary>
@ -74,7 +73,6 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
T? obj = _collection[position];
_collection.RemoveAt(position);
return obj;
}
}