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

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

View File

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