Савинов Роман Дмитриевич Лаборатораная №7 #16

Closed
zum wants to merge 3 commits from Lab7 into Lab6
Showing only changes of commit 8ac0e1f7e4 - Show all commits

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];
}
}
}