1
vote
1answer
36 views
Built-in IEqualityComparer<T> that uses ReferenceEquals
Is there a default IEqualityComparer implementation that uses ReferenceEquals?
EqualityComparer<T>.Default uses ObjectComparer, which uses object.Equals(). In my case, the objects already …
0
votes
2answers
65 views
Can this implementation of an IEqualityComparer be improved?
I don't see any problems with this code, but it feels like I'm missing something. Maybe it is possible to reduce the number of lines. Or is there even a bug to be fixed? I'm open to any suggestions.
…
0
votes
1answer
40 views
Is there a built-in IEqualityComparer that compares objects only using their hash value?
Is there a built-in IEqualityComparer that compares objects by the value returned by their GetHashCode value? It's easy to write, but I'd prefer to use a provided class instead of a custom one.
…
1
vote
1answer
169 views
Remove duplicates from DataTable and custom IEqualityComparer<DataRow>
How have I to implement IEqualityComparer<DataRow> to remove duplicates rows from a DataTable with next structure:
ID primary key, col_1, col_2, col_3, col_4
The default comparer doesn't work …
2
votes
4answers
464 views
C# - List<T>.Remove() always deletes the first object on the list
Working in Visual Studio 2008 (C#)...
I use a List collection to store instances of my custom class (Shift).
I want to delete a certain shift from the list by using the Remove method.
But …
3
votes
2answers
357 views
IEqualityComparer for anonymous type
I have this
var n = ItemList.Select(s => new { s.Vchr, s.Id, s.Ctr, s.Vendor, s.Description, s.Invoice }).ToList();
n.AddRange(OtherList.Select(s => new { s.Vchr, s.Id, s.Ctr, s.Vendor, …
3
votes
4answers
267 views
Distinct not working with LINQ to Objects
class Program
{
static void Main(string[] args)
{
List<Book> books = new List<Book>
{
new Book
{
Name="C# in depth",
…
2
votes
3answers
94 views
Hashtables (Dictionary etc) with integer keys
I've been puzzling over this for a few days... feel free to shoot down any of my assumptions.
We're using a Dictionary with integer keys. I assume that the value of the key in this case is used …
0
votes
1answer
71 views
Hashsets and different instances of class with all members identical
Let's say I have a class called myclass.
In my code I have two instances of myclass, myclass1 and myclass2.
Everything about them is (public and private) properties are identical.
If I try to add …
0
votes
2answers
102 views
Is there a way to find an object’s properties in List<T> using Contains?
Hi guys
I was wandering how can I find out if an object already exists in my List.
I'm adding "newPerson" (instance of Person class) in a List, but checking if newPerson contents/properties exists or …
0
votes
2answers
134 views
IEnumerable.Except() and a custom comparer
Hello, I'm having troubles with the Except() method.
Instead returning the difference, it returns the original set.
I've tried by implementing the IEquatable and IEqualityComparer in the Account.
…
0
votes
0answers
102 views
IEqualityComparer GethashCode method
Hi,
My datatable contains the following columns...
resultsView.Columns.Add("Fam.", typeof(string));
resultsView.Columns.Add("Component", typeof(int));
…
0
votes
4answers
436 views
LINQ Except using custom Comparer.
I am trying to use the "Except" method on a LINQ result set using a custom implementation if IEqualityComparer to exclude certain results based on the value of a single field from the result set.
So, …
1
vote
2answers
469 views
HashSet constructor with custom IEqualityCompare defined by lambda?
Currently the HashSet<T> constructor that allows you to define your equality comparison yourself is the HashSet<T>(IEqualityComparer<T> comparer) constructor.
I would like to define …
0
votes
2answers
277 views
Custom Generic.IEqualityComparer(Of T) - Compiler Errors
I am trying to implement a simple IEqulityComparer to use with LINQ collections. I have written the following code which is reduced to its simplest form for discussion purposes...
Public Structure …
