Get IEqualityComparer in the HashSet in CSharp
Description
The following code shows how to get IEqualityComparer in the HashSet.
Example
using System;// w ww. java 2s. c om
using System.Collections.Generic;
public class MainClass{
public static void Main(String[] argv){
HashSet<int> evenNumbers = new HashSet<int>();
for (int i = 0; i < 5; i++)
{
evenNumbers.Add(i * 2);
}
Console.WriteLine(evenNumbers.Comparer);
}
}
The code above generates the following result.