DtsObject.Equality(DtsObject, DtsObject) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the two specified objects have the same value.
public:
static bool operator ==(Microsoft::SqlServer::Dts::Runtime::DtsObject ^ dtsObj1, Microsoft::SqlServer::Dts::Runtime::DtsObject ^ dtsObj2);
public static bool operator == (Microsoft.SqlServer.Dts.Runtime.DtsObject dtsObj1, Microsoft.SqlServer.Dts.Runtime.DtsObject dtsObj2);
static member ( = ) : Microsoft.SqlServer.Dts.Runtime.DtsObject * Microsoft.SqlServer.Dts.Runtime.DtsObject -> bool
Public Shared Operator == (dtsObj1 As DtsObject, dtsObj2 As DtsObject) As Boolean
Parameters
- dtsObj1
- DtsObject
The object to compare against dtsObj2
.
- dtsObj2
- DtsObject
The object to compare against dtsObj1
.
Returns
true if the value of dtsObj1
is the same as the value of dtsObj2
; otherwise, false.