DtsObject.Equality Operator

Determines whether the two specified objects have the same value.

Namespace:  Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Syntax

'Declaration
Public Shared Operator = ( _
    dtsObj1 As DtsObject, _
    dtsObj2 As DtsObject _
) As Boolean
'Usage
Dim dtsObj1 As DtsObject
Dim dtsObj2 As DtsObject
Dim returnValue As Boolean

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

Parameters

Return Value

Type: System.Boolean
true if the value of dtsObj1 is the same as the value of dtsObj2; otherwise, false.