# Equals(T, T) Method Determines whether the specified properties are equal. ## Definition **Namespace:** CapyKit **Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+6cdd805be49c3b769a116584ea6904955ecd820d **C#** ``` C# public bool Equals( T x, T y ) ``` **VB** ``` VB Public Function Equals ( x As T, y As T ) As Boolean ``` **C++** ``` C++ public: virtual bool Equals( T x, T y ) sealed ``` **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