Поделиться через


Оператор GreaterThan

Determines whether one object is greater than another object by performing an greater than 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 поддерживает использование перегруженных операторов, но не объявление новых.

Параметры

Возвращаемое значение

Тип System. . :: . .Boolean
A Boolean object that specifies whether the first object is greater that the second object.
If True, the first object is greater than the second object.
If False, the first object is not greater than the second object.