Equality 運算子
Determines whether two objects are equal by performing an equality operation on two Property objects.
命名空間: Microsoft.SqlServer.Management.Smo
組件: Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)
語法
'宣告
Public Shared Operator = ( _
prop1 As Property, _
prop2 As Property _
) As Boolean
'用途
Dim prop1 As [Property]
Dim prop2 As [Property]
Dim returnValue As Boolean
returnValue = (prop1 = prop2)
public static bool operator ==(
Property prop1,
Property prop2
)
public:
static bool operator ==(
Property^ prop1,
Property^ prop2
)
static let inline (=)
prop1:Property *
prop2:Property : bool
JScript 支援多載運算子的使用,但不支援新運算子的宣告。
參數
- prop1
型別:Microsoft.SqlServer.Management.Smo. . :: . .Property
A Property object that specifies a property.
- prop2
型別:Microsoft.SqlServer.Management.Smo. . :: . .Property
A Property object that specifies a property.
傳回值
型別:System. . :: . .Boolean
A Boolean object that specifies whether the two specified objects are equal.
If True, the two specified objects are equal.
If False, the two specified objects are unequal.