Equals Method (T)

Google API

Indicates whether the current object is equal to another object of the same type.

Namespace:  Google.API
Assembly:  GoogleTranslateAPI (in GoogleTranslateAPI.dll) Version: 0.3.1.107 (0.3.1.107)

Syntax

C#
public bool Equals(
	T other
)
Visual Basic (Declaration)
Public Function Equals ( _
	other As T _
) As Boolean
Visual C++
public:
virtual bool Equals(
	T other
) sealed

Parameters

other
Type: T
An object to compare with this object.

Return Value

true if the current object is equal to the other parameter; otherwise, false.

Implements

IEquatable<(Of <(T>)>)..::.Equals(T)

See Also