# Equals(T, T) Method Determines whether the specified properties are equal. ## Definition **Namespace:** CapyKit **Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 **C#** ``` C# public bool Equals( T x, T y ) ``` **F#** ``` F# abstract Equals : x : 'T * y : 'T -> bool override Equals : x : 'T * y : 'T -> bool ``` #### Parameters
  T
The first object of type T to compare.
  T
The second object of type T to compare.
#### Return Value Boolean true if the specified objects are equal; otherwise, false. #### Implements IEqualityComparer(T).Equals(T, T) ## See Also #### Reference PropertyComparer(T, U) Class Equals Overload CapyKit Namespace