I have a class with 2 strings and 1 double (amount).
class Donator
- string name
- string comment
- double amount
Now I have a Array of Donators filled.
How I can sort by Amount?
|
feedback
|
|
If you implement
You can then call sort on whatever you want, say:
The There's also the lambda alternative without
| |||||||||||
feedback
|
|
By implementing
| |||||||||||
feedback
|
|
You could use | |||||||||
feedback
|
|
You can also use delegates:
| |||
|
feedback
|
|
Here is a sort without having to implement an Interface. This is using a Generic List
| |||
|
feedback
|
|
I always use the list generic, for example
then I call MyList.Sort
| |||||
feedback
|
|
Another way is to create a class that implements IComparer, then there is an overload to pass in the Comparer class. http://msdn.microsoft.com/en-us/library/8ehhxeaf.aspx This way you could have different classes for each specific sort needed. You could create one to sort by name, amount, or others. | |||
|
feedback
|
IndividualHumanBeingWhoDonated– Josh Stodola Mar 18 '10 at 20:32