Inequality 연산자
Determines whether the two specified objects do not have the same value.
네임스페이스: Microsoft.SqlServer.Dts.Runtime
어셈블리: Microsoft.SqlServer.ManagedDTS.dll의 Microsoft.SqlServer.ManagedDTS
구문
‘선언
Public Shared Operator <> ( _
dtsObj1 As DtsObject, _
dtsObj2 As DtsObject _
) As Boolean
‘사용 방법
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는 오버로드된 연산자의 사용을 지원하지만 새로운 오버로드된 연산자 선언은 지원하지 않습니다.
매개 변수
- dtsObj1
형식: Microsoft.SqlServer.Dts.Runtime. . :: . .DtsObject
The object to compare against dtsObj2.
- dtsObj2
형식: Microsoft.SqlServer.Dts.Runtime. . :: . .DtsObject
The object to compare against dtsObj1.
반환 값
형식: System. . :: . .Boolean
true if the value of dtsObj1 is not the same as the value of dtsObj2; otherwise, false.