Tagged Questions
6
votes
2answers
53 views
Why is CompareTo on short implemented this way?
Consider the following code:
namespace ConsoleApplication1 {
class Program
{
static void Main(string[] args)
{
Console.WriteLine(100.CompareTo(200)); // prints -1
...
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.
...
3
votes
4answers
181 views
How to compare two datetimes
I wonder how to compare two DateTime objects in .NET using DateTime methods Compare, CompareTo or Equals without comparing ticks.
I only need a tolerance level of milliseconds or seconds.
How can ...
1
vote
5answers
616 views
Using CompareTo() on different .NET types (e.g. int vs. double)
I've got a static method that accepts two object type variables and runs the CompareTo() method:
public static int Compare(Object objA, Object objB)
{
return (((IComparable)objA).CompareTo(objB));
...
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
432 views
Comparing .Net Version instance using CompareTo does not work as expected
The Version class in .Net does not implement the CompareTo interface as I would expect, it seems to handle the compare alphanumerically instead of comparing the four numbers. Maybe not a bug, but a ...