ISEbd-21 Nikolay Gapon LabWork04 HARD #4

Closed
NikGapon wants to merge 3 commits from LabWork04 into LabWork03
Showing only changes of commit 67b573ee65 - Show all commits

View File

@ -64,11 +64,11 @@ namespace Airbus
}
public IEnumerable<T> GetAirplanes()
{
foreach (var car in _places)
foreach (var airplane in _places)
{
if (car != null)
if (airplane != null)
{
yield return car;
yield return airplane;
}
else
{