ElementHelpersAreEqual Method |
A standard method for determining if two elements are equal.
This method should be used by any Element.equals() implementation to ensure consistent behavior.
Namespace:
VelocityGraph.Frontenac.Blueprints.Util
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public static bool AreEqual(
this IElement a,
Object b
)
<ExtensionAttribute>
Public Shared Function AreEqual (
a As IElement,
b As Object
) As Boolean
public:
[ExtensionAttribute]
static bool AreEqual(
IElement^ a,
Object^ b
)
[<ExtensionAttribute>]
static member AreEqual :
a : IElement *
b : Object -> bool
Parameters
- a
- Type: VelocityGraph.Frontenac.BlueprintsIElement
The first element - b
- Type: SystemObject
The second element (as an object)
Return Value
Type:
BooleanWhether the two elements are equal
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IElement. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also