PIbd-22_Petrushin_E.A._Lab8 #13
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "PIbd-22_Petrushin_E.A._Lab8"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Зачтено с понижением балла(ов)
@ -0,0 +12,4 @@
public bool Equals(CarsCollectionInfo? other)
{
// TODO прописать логику сравнения по свойству Name
throw new NotImplementedException();
Логика не определена
@ -0,0 +1,23 @@
namespace SelfPropelledArtilleryUnit.Generics
{
internal class SPAUCollectionInfo : IEquatable<SPAUCollectionInfo>
Такой класс уже есть
@ -0,0 +12,4 @@
public bool Equals(SPAUCollectionInfo? other)
{
return Name == other?.Name;
throw new NotImplementedException();
Недостижимый код
@ -0,0 +7,4 @@
namespace SelfPropelledArtilleryUnit.Generics
{
internal class SPAUCompareByColor : IComparer<DrawningSPAU?>
Требовалось сортировать по критериям: цвет, скорость, вес
Pull request closed