Tagged Questions

4
votes
1answer
174 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
95 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
76 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
256 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
1answer
28 views

Clashing Bookings Comparing DateTimes using CompareTo

I am making a booking system where users can make appointments with each other. What I need to do is make sure that the meetings do not clash time wise. For example: Meeting 1 is from 13:00 to 14:00. ...
1
vote
5answers
197 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
260 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
89 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
69 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
44 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
50 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 ...