Tagged Questions

6
votes
8answers
622 views

Shuffle using IComparer

First of all, I do know about the Fisher-Yates shuffle. But lets say for arguments sake that I want to allow the user to pick a sort option from a Dropdown list. This list would include a "Random" …
4
votes
3answers
713 views

C# modify List.Contains behavior

Hi, I have a List<MyObj> with the class MyObj : IComparable. I wrote the method CompareTo in the MyObj class per the IComparable interface, but when I use the …
4
votes
4answers
776 views

When to use IComparable<T> Vs. IComparer<T>

I'm trying to figure out which of these interfaces I need to implement. They both essentially do the same thing. When would I use one over the other?
2
votes
3answers
80 views

What is wrong with this Custom Compare function

I was trying to debug a problem and ran into this issue. Maybe somebody can explain it to me. This is the code in question public int Compare(CustomClass rt1, CustomClass rt2) { if (rt1 == …
2
votes
3answers
89 views

Is there a reasonable scenario for a stateful IComparer<T>?

I have never written a stateful IComparer<T> with a default constructor. All standard library implementations which I've checked in Reflector are stateless as well. Therefore, I'd like to assume …
2
votes
1answer
279 views

List.Sort IComparer performance

I'm trying to sort a pair of int arrays (int[] a; int[] b;) If I use Array.Sort(a,b) then the performance is great. However, I'd prefer to use a List<> and load the int pairs in a struct. I can …
2
votes
1answer
108 views

When will a Comparer make Sort throw an ArgumentException?

The documentation for Sort says that Sort will throw an ArgumentException if "The implementation of comparer caused an error during the sort. For example, comparer might not return 0 when comparing an …
1
vote
3answers
86 views

Reverse-sorting a Listview (with Comparer class)

I have a two-column ListView linked to a Datapager. The ListView lists all files of a particular type in a particular directory, so the data source is an ArrayList of type FileInfo. Consequently, I …
0
votes
1answer
37 views

Using OrderBy with custom IComparer with SubSonic

I am trying to call OrderBy() using a custom IComparer on a SubSonic IQueryable like so: IQueryable<FooObject> sortedFoos = FooObject.All() .OrderBy(f => f, new FooObjectComparer()); …
0
votes
3answers
85 views

“Cannot convert to IComparer”

I have the following IComparer defined for boxed RegistryItem objects: public class BoxedRegistryItemComparer : IComparer<object> { public int Compare(object left, object right) { …
0
votes
3answers
115 views

Sort String Array As Int

Is there some way to use IComparer with ArrayList.Sort() to sort a group of strings as ints?
0
votes
2answers
1k views

Problem with custom IComparer for List (sort) - c#

Hi, can anyone help, i have problem doing a sort, I thought i had it sorted but appears not to be working. I have a List which stores the following values 8,6,10,11,7 I also have another List …
0
votes
3answers
710 views

Use own IComparer<T> with Linq OrderBy

I have a generic List<MyClass> where MyClass has a property "InvoiceNumber" which contains values like: 200906/1 200906/2 .. 200906/10 200906/11 200906/12 My list is bound to a …
0
votes
4answers
912 views

SortedList not sorting on key - VB.NET

Hello I have a the need for key value pair that I wish to sort so I decided to use a SortedList instead of a HashTable. I am adding the data in the order below to my SortedList which is the order I …
0
votes
1answer
414 views

IComparer problem + How do I sort an array of strings naturally (FILE_10 > FILE_2) in .NET?

SOLVED at the bottom of my post. Or more specifically: I have a bunch of FileInfo objects (I need the FileInfo objects to exclude hidden, system and reparse point files). I need to sort FileInfo[] …