Determines whether the specified object is strictly equal to this object.

 

   

Syntax
 

[C#]
override bool Equals(object obj)
[Visual Basic]
Overrides Function Equals(obj As Object) As Boolean

Throws Exceptions may throw Exception()

 

   

Params
 
Name Description
obj The object to compare with this object.
return Whether the objects are strictly equal.

 

   

Notes
 

The method returns a value indicating wether the objects are strictly equal in the sense of the JavaScript operator ===.

 

   

Example
 

None.