сноваа массив

This commit is contained in:
zum 2024-05-07 16:17:24 +04:00
parent f577eb1198
commit 8ac0e1f7e4

View File

@ -121,8 +121,8 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
public IEnumerable<T?> GetItems()
{
for (int i = 0; i < _collection.Length; ++i)
{
yield return _collection[i];
}
{
yield return _collection[i];
}
}
}