I'd like something like
int minIndex = list.FindMin(delegate (MyClass a, MyClass b) {returns a.CompareTo(b);});
Is there a builtin way to do this in .NET?
|
1
|
|||
|
|
|
Try looking at these: As long as your class implements IComparable, all you have to do is:
|
|||
|
|
Well, if you can't use .NET 3.5, you could always sort the list and then return list[0]. It might not be the fastest way, but it's probably the shortest code, especially if your class already implements IComparable.
This also assumes, of course, that it doesn't matter which item you return if you have multiple items that are the minimum or maximum. If your class doesn't implement IComparable, you can pass in an anonymous delegate, something like this:
|
||
|
|
|
|
You note that "I'm still in 2" - you might, then, want to look at LINQBridge. This is actually aimed at C# 3.0 and .NET 2.0, but you should be able to use it with C# 2.0 and .NET 2.0 - just you'll have to use the long-hand:
Of course, it will be easier if you can switch to C# 3.0 (still targetting .NET 2.0). And if LINQBridge isn't an option, you can implement it yourself:
|
|||
|
|
|
Using Linq you have the Min() and Max() functions. So you can do |
||||
|