Tagged Questions
4
votes
2answers
703 views
How to do equality comparison in SQL with C#-like behavior?
How to compare equality of value in SQL with null?
For those familiar with C#, here are the results of comparing nullable values:
null == null : true
null == john : false
null == paul : false
john ...
4
votes
7answers
1k views
Comparing 2 huge lists using C# multiple times (with a twist)
Hey everyone, great community you got here. I'm an Electrical Engineer doing some "programming" work on the side to help pay for bills. I say this because I want you to take into consideration that I ...
1
vote
4answers
103 views
Is it possible to count the number of elements from one array in another and vice versa in a single loop?
I have a double array x and a double array y. Both can have duplicates elements.
const double MAX = 10000.0;
const int X_LENGTH = 10000;
const int Y_LENGTH = 10000;
const double TOLERANCE = 0.01;
...
1
vote
1answer
48 views
C# Comparing images: Are the images' files the same
I have seen only one solution for comparing images. But this solution checks if EVERYTHING about the images is the same. But I want to check if the images are loaded from the same image file from the ...
1
vote
1answer
102 views
Problem with comparing 2 files - false when should be true?
I tried using byte by byte comparison and also comparing calculated hash of files (code samples below). I have a file, copy it - compare both - result is TRUE. But problem starts when I open one of ...
0
votes
5answers
116 views
DateTime question
I have 2 DateTime objects, which I save to a file after using the ToShortDateString() function; the strings look like "12/15/2009". I am stuck on this part now, I want to initialize DateTimeObject(s) ...
0
votes
1answer
562 views
C# Comparing Two Custom Lists
I have run into a situation where I need to compare two different lists to each other and I am wondering what the best method is for doing this? I thought something like this would work but it ...