[]
Indicates whether this formula syntax tree is equal to the specified object.
Two FormulaSyntaxTree instances are considered equal when the specified
object is also a FormulaSyntaxTree and their root syntax nodes are equal.
This method returns false if obj is null or is not a
FormulaSyntaxTree.
public override bool Equals(object obj)
Public Overrides Function Equals(obj As Object) As Boolean
| Type | Name | Description |
|---|---|---|
| object | obj | The object to compare with this formula syntax tree. May be |
| Type | Description |
|---|---|
| bool |
true
if obj is a FormulaSyntaxTree with an equal root syntax node; otherwise, false.
|