This commit is contained in:
MorozovDanil 2024-04-18 22:21:24 +04:00
parent f0555a2a64
commit 6563fd4bec

View File

@ -91,7 +91,7 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
{
if (position < 0 || position >= Count)
{
return null ;
return null;
}
T obj = _collection[position];
_collection[position] = null;