Admin Production rocket
Current Publication

Operators

Reflection Desktop .NET API Guide V18.0
Rocket® Reflection Desktop (formerly a product of Micro Focus or formerly a product of Open Text) documentation that was created prior to Rocket Software's acquisition of certain products from OpenText may contain outdated references to "Micro Focus” or “OpenText”, which are trademarks of OpenText. Rocket Software is not affiliated with Micro Focus or OpenText and has rebranded these products as Rocket® products.
The first object to compare.
The second object to compare.
Equality Operator (ContextMenu)
In This Topic
Determines whether the specified object is equal to the current object.
Syntax

                     
                     
'Declaration
 

                     
                     
Public Operator =( _
   ByVal cm1 As ContextMenu, _
   ByVal cm2 As ContextMenu _
) As Boolean

                  

                     
                     
'Usage
 

                  

                     
                     
public bool operator ==( 
   ContextMenu cm1,
   ContextMenu cm2
)

                  

Parameters

cm1
The first object to compare.
cm2
The second object to compare.

Return Value

true if the specified objects are equal to each other; otherwise, false. If both objA and objB are null, the method returns true.
See Also