Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Determines a value that indicates whether the first object is equal to the second object.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Protected Shared Function EqualsHelper ( _
obj1 As Object, _
obj2 As Object _
) As Boolean
'Usage
Dim obj1 As Object
Dim obj2 As Object
Dim returnValue As Boolean
returnValue = DtsObject.EqualsHelper(obj1, _
obj2)
protected static bool EqualsHelper(
Object obj1,
Object obj2
)
protected:
static bool EqualsHelper(
Object^ obj1,
Object^ obj2
)
static member EqualsHelper :
obj1:Object *
obj2:Object -> bool
protected static function EqualsHelper(
obj1 : Object,
obj2 : Object
) : boolean
Parameter
- obj1
Typ: System.Object
The first object to compare.
- obj2
Typ: System.Object
The second object to compare.
Rückgabewert
Typ: System.Boolean
True if the first object is equal to the second object; otherwise, false.