Весной первым делом расцвел АвтоВАЗ

This commit is contained in:
Artyom_Yashin 2023-12-22 16:50:13 +04:00
parent 1611aaf94c
commit e609ddf465

View File

@ -17,7 +17,7 @@ namespace AirBomber
}
public bool Equals(PlanesCollectionInfo? other)
{
if (other == null)
if (other == null || other.Name == null)
throw new ArgumentNullException(nameof(other));
return Name == other.Name;
}