- CSharp - IntObj - IComparable
- http://habrahabr.ru/blogs/net/...
Please wait, it may take some time...
Copy Source | Copy HTMLclass IntObj : IComparable<IntObj> { public int value; public int CompareTo(IntObj other) { return value - other.value; } }