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 f0555a2a64 - Show all commits

View File

@ -93,7 +93,7 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
{
return null ;
}
T? obj = _collection[position];
T obj = _collection[position];
_collection[position] = null;
return obj;
}