DropDownMember.GreaterThan Operator
Determines whether the first DropDownMember is greater than the second DropDownMember.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
Microsoft.VisualStudio.Package.LanguageService.11.0 (in Microsoft.VisualStudio.Package.LanguageService.11.0.dll)
Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
Syntax
'Declaration
Public Shared Operator > ( _
m1 As DropDownMember, _
m2 As DropDownMember _
) As Boolean
public static bool operator >(
DropDownMember m1,
DropDownMember m2
)
public:
static bool operator >(
DropDownMember^ m1,
DropDownMember^ m2
)
static let inline(>)
m1:DropDownMember *
m2:DropDownMember : bool
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.