Мелкие правки 8-й лабораторной.
This commit is contained in:
parent
d5f6a04152
commit
519ba5ef7a
@ -43,26 +43,36 @@ namespace Airbus
|
||||
return 1;
|
||||
}
|
||||
|
||||
if(xPlane.GetPlane.Airbus.Speed != yPlane.GetPlane.Airbus.Speed)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (xPlane.GetPlane.Airbus.Weight != yPlane.GetPlane.Airbus.Weight)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
var xEntity = xPlane.GetPlane.Airbus;
|
||||
var yEntity = yPlane.GetPlane.Airbus;
|
||||
var colorCompare = xEntity.CorpusColor.Name.CompareTo(yEntity.CorpusColor.Name);
|
||||
var colorCompare = xEntity.CorpusColor.ToArgb().CompareTo(yEntity.CorpusColor.ToArgb());
|
||||
|
||||
if (colorCompare != 0 || xEntity is not EntitySuperAirbus xEntityAirbus || yEntity is not EntitySuperAirbus yEntityAirbus)
|
||||
int i = xEntity.CorpusColor.ToArgb();
|
||||
int j = yEntity.CorpusColor.ToArgb();
|
||||
|
||||
if (colorCompare != 0)
|
||||
{
|
||||
return colorCompare;
|
||||
}
|
||||
|
||||
return xEntityAirbus.AddColor.Name.CompareTo(yEntityAirbus.AddColor.Name);
|
||||
if (xEntity is EntitySuperAirbus xEntityAirbus && yEntity is EntitySuperAirbus yEntityAirbus)
|
||||
{
|
||||
var addColorCompare = xEntityAirbus.AddColor.ToArgb().CompareTo(yEntityAirbus.AddColor.ToArgb());
|
||||
|
||||
if(addColorCompare != 0)
|
||||
{
|
||||
return addColorCompare;
|
||||
}
|
||||
}
|
||||
|
||||
var speedCompare = xPlane.GetPlane.Airbus.Speed.CompareTo(yPlane.GetPlane.Airbus.Speed);
|
||||
|
||||
if (speedCompare != 0)
|
||||
{
|
||||
return speedCompare;
|
||||
}
|
||||
|
||||
return xPlane.GetPlane.Airbus.Weight.CompareTo(yPlane.GetPlane.Airbus.Weight);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user