Presnyakova V.V Lab_8 #17

Closed
Victoria_Presnyakova wants to merge 12 commits from Lab_8 into Lab_7
Showing only changes of commit 8bd07b13ac - Show all commits

View File

@ -6,7 +6,13 @@ using System.Threading.Tasks;
namespace Catamaran
{
internal class BoatCompareByColor
internal class BoatCompareByColor : IComparer<IDrawingObject>
{
public int Compare(IDrawingObject x, IDrawingObject y)
{
// TODO реализовать логику сравнения
throw new NotImplementedException();
}
}
}