Domanda

I'm implementing a custom comparer in order to apply a custom sort order for items in various views.

Some of the time I'm finding that I want to maintain the existing order of items, in this case what should I return from my Compare method implementation? Is it enough to simply return 0, or do I actively need to identify which item came first?

È stato utile?

Soluzione

(Credit for this answer goes to Lee)

It depends on whether or not the algorithm used to do the sorting is stable. For example, the OrderBy is stable and so returning 0 from Compare will mean that the two items retain their original order in the list, however List.Sort is not, and so returning 0 from Compare doesn't guarentee that the two items will be in their original order in the sorted output.

Altri suggerimenti

Zero, but your sort algorithm may still change its order.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top