Determines whether the first DropDownMember is greater than the second DropDownMember.
Namespace: Microsoft.VisualStudio.Package
Assembly: Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Syntax
'Declaration
Public Shared Operator > ( _
m1 As DropDownMember, _
m2 As DropDownMember _
) As Boolean
'Usage
Dim m1 As DropDownMember
Dim m2 As DropDownMember
Dim returnValue As Boolean
returnValue = (m1 > m2)
public static bool operator >(
DropDownMember m1,
DropDownMember m2
)
public:
static bool operator >(
DropDownMember^ m1,
DropDownMember^ m2
)
JScript does not support overloaded operators.
Parameters
m1
Type: Microsoft.VisualStudio.Package.DropDownMember[in] The first DropDownMember object to compare.
m2
Type: Microsoft.VisualStudio.Package.DropDownMember[in] The second DropDownMember object to compare.
Return Value
Type: System.Boolean
true if the first DropDownMember object is greater than the second DropDownMember object, otherwise false.
Remarks
This operator method returns the results from m1.CompareTo(m2) > 0.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.