Compares the Backdrop object to another System.Object to see whether they are equal.
Syntax
| Visual Basic (Declaration) | |
|---|
Overrides Public Function Equals( _
ByVal obj As Object _
) As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As Backdrop
Dim obj As Object
Dim value As Boolean
value = instance.Equals(obj)
|
| C# | |
|---|
public override bool Equals(
object obj
) |
Parameters
- obj
- The System.Object to which the Backdrop object is being compared.
Return Value
Boolean. Returns True if the objects are equal; otherwise False.
See Also