Class IdentityComparer<T>
Inheritance
System.Object
    IdentityComparer<T>
  Implements
System.Collections.Generic.IEqualityComparer<T>
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: Lucene.Net.Support
Assembly: Lucene.Net.dll
Syntax
public class IdentityComparer<T> : IEqualityComparer<T>
  Type Parameters
| Name | Description | 
|---|---|
| T | 
Methods
| Improve this Doc View SourceEquals(T, T)
Declaration
public bool Equals(T x, T y)
  Parameters
| Type | Name | Description | 
|---|---|---|
| T | x | |
| T | y | 
Returns
| Type | Description | 
|---|---|
| System.Boolean | 
GetHashCode(T)
Declaration
public int GetHashCode(T obj)
  Parameters
| Type | Name | Description | 
|---|---|---|
| T | obj | 
Returns
| Type | Description | 
|---|---|
| System.Int32 | 
Implements
      System.Collections.Generic.IEqualityComparer<T>