14 lines
272 B
C#
14 lines
272 B
C#
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
|
|
namespace TBF.UI.Calendar
|
|
{
|
|
public class RectangleComparer : IComparer<Rectangle>
|
|
{
|
|
public int Compare(Rectangle x, Rectangle y)
|
|
{
|
|
return x.Y.CompareTo(y.Y);
|
|
}
|
|
}
|
|
}
|