Tagged Questions

4
votes
1answer
161 views

Problem with CompareTo

I am trying to implement a sorted list. I have created the class I want to have stored in the list, but for some reason when I try and run the sort the sort method I get an exception thrown. It ...
3
votes
3answers
86 views

How does CompareTo sort a list?

Below, a list l that contains a list of Product with Name and Price properties. The list can be sort alphabetically by the following class ProductNameComparer which implements IComparar. ...
2
votes
3answers
59 views

Object.CompareTo(Object) for unknown data type

I am trying to compare objects in an object[] that are of a single type (unknown at runtime). They are of System.string, int, decimal, Datetime, or bool types. Is there a way to compare two of these ...
2
votes
1answer
251 views

Comparing generic fields

I have some generic types, like the following: public struct Tuple<T1, T2> { ... } public struct Tuple<T1, T2, T3> { ... } etc. These should in theory be able to compare themselves ...
1
vote
5answers
192 views

Random numbers vs. GetHashCode() in CompreTo()?

I'm using the Random class in my struct's CompareTo() to pick, with equal probability, one of the structs when both have the same field values. The Random class is instantiated with a fixed seed to ...
1
vote
1answer
252 views

equivalent of SQL binary relative value test in C#

I am trying to figure out the equivalent C# for this SQL: @var1 = "1a1" @var2 = "1F" CONVERT(varbinary, @var1) > CONVERT(varbinary, @var2) Is it the same as this? if (var1.CompareTo(var2) > ...
0
votes
1answer
84 views

list of built-in colors grouped by color equality

I'd like to compare colors but haven't got a clue where to start. I tried private static int CompareColors(Color colorA, Color colorB) { long resultA = colorA.A + colorA.B + colorA.G + colorA.R; ...
0
votes
2answers
61 views

How to compare a string column to a number (as a decimal) in Linq

I have a database with an amount field - it's a decimal, although the database schema has the column defined as a string. I want to be able to run a Linq query to find values based on a number for the ...
0
votes
1answer
37 views

Custom Comparer against a parameter failing

I am trying to write a custom comparer to sort a list of search results based on similarity. I would like the term most like the entered search term to appear first in the list, followed by phrases ...
-2
votes
2answers
45 views

Implementing Icomparable on a Taxpayer class to sort based on taxOwed

i am not being able to implemenet Icomparable CompareTo to compare Taxpayer objects based on tax owed ..can someone help me with the icomparable implementatioin of Taxpayer class?? I want to implement ...