Tuple.Equality Operator

Determines whether two specified instances of Tuple are equal.

Namespace:  Microsoft.AnalysisServices.AdomdClient
Assembly:  Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)

Syntax

'Declaration
Public Shared Operator = ( _
    o1 As Tuple, _
    o2 As Tuple _
) As Boolean
'Usage
Dim o1 As Tuple
Dim o2 As Tuple
Dim returnValue As Boolean

returnValue = (o1 = o2)
public static bool operator ==(
    Tuple o1,
    Tuple o2
)
public:
static bool operator ==(
    Tuple^ o1, 
    Tuple^ o2
)
static let inline (=)
        o1:Tuple * 
        o2:Tuple  : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.

Return Value

Type: System.Boolean
true if o1 and o2 represent the same Tuple; false otherwise.