1
vote
4answers
63 views

Determining if two objects are equal

I'm trying to test whether an object is equal to one in a list of objects given certain criteria (is name equal) and if it is, don't add it to list, otherwise add it. I have to use a method with this ...
-2
votes
1answer
58 views

Testing if two objects are equal

I'm trying to create a find method from scratch to see if two objects are equal given that the results of certain methods are equal, using the Equals method to do so. I know using the Find/Contains ...
0
votes
1answer
58 views

Creating a find method

I'm trying to create a find method from scratch to see if two objects are equal given that certain members are equal, using the Equals method to do so. I know using the Find/Contains methods would be ...
0
votes
3answers
42 views

Comparing two unknown type object

Here is the situation. I have two unknown type's objects that i would like to compare to know if one is identical to another. Both can be string, int, enumerable or any custom class you can imagine. ...
0
votes
4answers
54 views

How should I implement IEqualityComparer<T>.Equals

Concerning IEqualityComparer, is there ever a reason why the Equals(T x, T y) implementation should be anything other than what I have below? public class MyEquality : IEqualityComparer<MyType> ...
2
votes
1answer
56 views

Should GetHashCode() method take care about null value given as parameter?

In some C# code, I use linq GroupBy<TSource, TKey>() method with a custom IEqualityComparer<T>. GroupBy(x => x.SomeField, new FooComparer()); The field i use as a grouping key can be ...
3
votes
4answers
54 views

ExceptWith in HashSet for complex types

I have HashSet of my custom class: public class Vertex { public string Name; public override bool Equals(object obj) { var vert = obj as Vertex; if (vert !=null) ...
4
votes
1answer
144 views

How to compare multidimensional arrays on equality?

I know you can use Enumerable.SequenceEqual to check equality. But a multidimensional array does not have such method. Any suggestion on how to compare 2 dimensional array? Actual problem: public ...
0
votes
1answer
50 views

A questionable inside into overriding Equals

Following Guidelines for Overriding Equals() and Operator == (C# Programming Guide), it seems advisable to override gethashcode when overriding equals(object), as well as equals(type). It is in my ...
1
vote
3answers
90 views

Object.Equals clarification in C#?

I've made a simple test : object t = 3; object aa = 3; #1 Console.WriteLine(t.Equals(aa)); #2 Console.WriteLine(t.Equals(3)); #3 Console.WriteLine(3.Equals(aa)); All of them ...
2
votes
3answers
100 views

equals in c# is true

I am doing webmethod in c#. On debugging, (chk.Equals(oldpass)) the query shows same value on both left and right side. But still,instead of going inside if,execution moves to else part showing ...
1
vote
3answers
90 views

Why are there static and non static overloads of Equals in .net?

Why are there two overloads of Equals in .NET's object class? If I want to have a custom equality function, e.g. so that I can use sets or dictionaries, should I override both (in addition to ...
1
vote
5answers
121 views

String.Equals how does it work?

I have string text="camel", and then I want to check if text contains letter "m", so I loop through it and checking it using: if (text[i].Equals("m")) but this never returns me true... why?
3
votes
5answers
181 views

c# how do i compare two string that have matching letters but one has a whitespace

Here is my code below, how can I make the if return true as it currently skips over the if statement because of the string values has a space in it. string instrucType = "FM"; string tenInstrucType ...
6
votes
4answers
119 views

Object.Equals: everything is equal by default

While reading Jeffrey Richter's CLR via C# 4th edition (Microsoft Press), the author at one point states that while Object.Equals currently checks for identity equality, Microsoft should have ...
0
votes
2answers
289 views

Select rows where column equals one of the string values in array

I'm trying to get relevant rows into datatable, i want only rows that have column value equal to one of the values in other sql table, that's my code: try { sc.Open(); for (int i = 0; i ...
1
vote
2answers
322 views

Having problems comparing two custom class objects [duplicate]

Possible Duplicate: What is “Best Practice” For Comparing Two Instances of a Reference Type? I have this custom Class for my application. There are two instances (A and B) of this class, ...
0
votes
6answers
547 views

maximal sequence of equal elements in an array

I have for homework the exercise: Write a program that finds the maximal sequence of equal elements in an array. Example: {2, 1, 1, 2, 3, 3, 2, 2, 2, 1} = {2, 2, 2}. I came up with this: ...
4
votes
4answers
69 views

Repeated boxing makes different references?

I try to understand this code: double b = 3; object o = b; Console.WriteLine(o.Equals(3));//false Console.WriteLine(o.Equals(b));//true Console.WriteLine( o == (object)b );//false Each new boxing ...
3
votes
1answer
134 views

How does String.Equals work?

I have a dictionary that has keys as string. One item has peculiar behavior. For the same string, it is not matching. I guess this has something to do with String.Equals behavior. Even ...
1
vote
4answers
108 views

why integer.equals(string) gives false when both contian same value , but does not throw type mismatch exception

I have a code where I get string as input and I compare it with integer. I saw that integer variable also has Equals function that accept string parameter. I have used it directly thinking it will ...
3
votes
2answers
166 views

List<T> of particular type causes ComboBox to break

I have a List<T> which holds entity types generated by SubSonic. Let's call this type NaughtyItem. When the list of NaughtyItem is bound to the ComboBox, strange things start to happen*. The ...
1
vote
1answer
85 views

group equal files in a directory

I'm writing a code to group equal files in a given directory using the hashCompute method. I have done most of the work but I can't seem to group my files. I want files with same hash value to be ...
3
votes
2answers
178 views

What are the drawbacks of using a Guid().GetHashCode() when overriding GetHashCode()

I found an implementation of GetHashCode() that looks like this Guid _hashCode = Guid.NewGuid(); public override int GetHashCode() { return _hashCode.GetHashCode(); } Even ...
3
votes
7answers
129 views

In C#, how do I overload the Equals operator in my class properly so that Queue.Contains() works?

I've created a class State. For a Queue of State objects, I want to test whether the Queue already contains a State object of equal value. Two State objects, which each contain a 2D boolean array, ...
8
votes
1answer
92 views

Inconsistency in Equals and GetHashCode methods

After reading this question Why do "int" and "sbyte" GetHashCode functions generate different values? I wanted to dig further and found following behavior: sbyte i = 1; ...
5
votes
4answers
190 views

equals() and == in a generic function

I am making a comparer for set operation on various types. So I have a generic class public class Comparer<T, Tid> ... public bool Equals(T x, T y) { var xid = ...
0
votes
2answers
124 views

Add method to auto-generated class

How can I add bool Equals(object obj) method to class that is created automatically (in my case by edmx model). One solution that I mean is to inherit this class and use this new class, but I'm ...
1
vote
2answers
100 views

Calling Equals returns false every time, even when values are same (C#)

I have a problem in an Windows Forms application which uses a XNA screen. I want to see if a change happens to an object after completing multiple lines of code. If it does, it should add a * to the ...
0
votes
3answers
80 views

Instances of my class don't want to act properly as dictionary keys interchangeably with strings

I created a sort of string wrapper class and want to use its instances as dictionary keys interchangeably with usual strings. I overrode GetHashCode and Equals and got results that seem strange. I've ...
1
vote
2answers
259 views

How to make arrays values equal in C#?

Let's say that I have 2 string arrays with different values: string[] sArray1 = new string[3]{"a","b","c"}; string[] sArray2 = new string[3]{"e","f","g"} And I want to make values of sArray1 equal ...
1
vote
3answers
161 views

Comparing object used as Key in Dictionary

my class: public class myClass { public int A { get; set; } public int B { get; set; } public int C { get; set; } public int D { get; set; } } and main example: ...
2
votes
1answer
98 views

How to do a good Equality comparison using its base class?

I'm trying to perform a good comparison when I use List.Contains(T item). The problem is that I'm using BaseItem as a list item. And I need to verify if one object inside of the list has the same ...
5
votes
2answers
138 views

Type-safe Equals()

As my (unit-)test coverage is still quite low, unfortunately, I have to find lots of errors the hard way. Therefore, during refactoring, I heavily rely on type checking of the C# compiler. Today, I ...
1
vote
5answers
209 views

Can we shorten s1.Equals(s2, StringComparison.InvariantCultureIgnoreCase)?

When I'm comparing two string without case, I use: if (s1.Equals(s2, StringComparison.InvariantCultureIgnoreCase)) ... I'd like to shorten this statement throughout my code as the ...
4
votes
7answers
551 views

What's wrong with defining operator == but not defining Equals() or GetHashCode()?

For the code below public struct Person { public int ID; public static bool operator ==(Person a, Person b) { return a.Equals(b); } public static bool operator !=(Person a, Person b) { ...
1
vote
2answers
116 views

Why does Object.Equals(new Object(), new Object()) return false

Why does the following piece of code print false? static void Main(string[] args) { Console.WriteLine(Object.Equals(new Object(), new Object())); Console.ReadKey(); }
3
votes
4answers
112 views

C# different MSDN guidelines about Equals implementation

Why do the following documents talk about different approaches when implementing Equals method? [MSDN] Guidelines for Overriding Equals() and Operator == (C# Programming Guide) [MSDN] Implementing ...
2
votes
3answers
324 views

comparing doubles with adaptive approximately equal

I am attempting to make an adaptive 'about equal' method (written in C# but the question is general) accepting two doubles and returning a boolean if they are 'about equal' or not. By adaptive, I mean ...
-3
votes
3answers
466 views

Difference between == and Equals in C# [duplicate]

Possible Duplicate: C# difference between == and .Equals() For comparing two variables we can use == or Equals method. for example, string a = new string(new char[] {'a', 'b', 'c', ...
2
votes
4answers
147 views

creating a equals function in C# with many variables to compare

I have a function of an class in C# that compares one object to another. More or less a Equals function but with some added code. My object has quite a few variables and I would like to compare each ...
5
votes
1answer
192 views

C# shorthand for Equals() when both args can be null

A simple question: I want to compare two objects using the virtual Equals() method (not ==). Both can be null. Should I repeat this litany: if ((left == null && right == null) || (left != ...
0
votes
2answers
857 views

Case insensitive string search using contains

I need to search a directory for files and folders that contain the entered text, I can see that File.Name.Contains(txtSearch) is the one that i need, but the problem is that it doesn't return true ...
3
votes
1answer
204 views

How to compare two instances' contents in C#?

I have a silly question here. I define a class with many data members, like this: public class A { public string Name { get; set; } public double Score { get; set; } //...many members ...
4
votes
1answer
239 views

How do I tell my mock/stub of an abstract class to use its override of Object.Equals()?

I have a relatively simple abstract class. I've simplified it further for this question. public abstract class BaseFoo { public abstract string Identification { get; } //some other abstract ...
5
votes
4answers
1k views

When Should a .NET Class Override Equals()? When Should it Not?

The VS2005 documentation Guidelines for Overloading Equals() and Operator == (C# Programming Guide) states in part Overriding operator == in non-immutable types is not recommended. The newer ...
3
votes
3answers
2k views

Simplify Overriding Equals(), GetHashCode() in C# for Better Maintainability

I find my self overriding Equals() and GetHashCode() frequently to implement the semantic that business objects with identical property values are equal. That leads to code that is repetitive to ...
16
votes
2answers
449 views

IStructuralEquatable vs Equals?

according to msdn IStructuralEquatable Defines methods to support the comparison of objects for structural equality. Structural equality means that two objects are equal because they have ...
10
votes
3answers
987 views

Difference between == operator and Equals() method in C#?

What is the difference between == and Equals() with example? I know that == is used to compare operator and Equals() method is used to compare content of string.So i tried // first example string s1 ...
14
votes
5answers
2k views

What is the difference between IEqualityComparer<T> and IEquatable<T>?

I want to understand the scenarios where IEqualityComparer<T> and IEquatable<T> should be used. The MSDN documentation for both looks very similar.

1 2 3 4