DropDownMember.Inequality Operator
Determines if two DropDownMember objects are not equal.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
Syntax
'Declaración
Public Shared Operator <> ( _
m1 As DropDownMember, _
m2 As DropDownMember _
) As Boolean
'Uso
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
)
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 two DropDownMember objects are not equal, otherwise false.
Remarks
This operator method returns the results of !(m1 == m2) (that is, it calls the Equality method and reverses the result).
.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.