EditorOptionKey<T>.Inequality Operator

Definition

Determines whether two instances of this type are different.

public:
 static bool operator !=(Microsoft::VisualStudio::Text::Editor::EditorOptionKey<T> left, Microsoft::VisualStudio::Text::Editor::EditorOptionKey<T> right);
 static bool operator !=(Microsoft::VisualStudio::Text::Editor::EditorOptionKey<T> left, Microsoft::VisualStudio::Text::Editor::EditorOptionKey<T> right);
public static bool operator != (Microsoft.VisualStudio.Text.Editor.EditorOptionKey<T> left, Microsoft.VisualStudio.Text.Editor.EditorOptionKey<T> right);
static member op_Inequality : Microsoft.VisualStudio.Text.Editor.EditorOptionKey<'T> * Microsoft.VisualStudio.Text.Editor.EditorOptionKey<'T> -> bool
Public Shared Operator != (left As EditorOptionKey(Of T), right As EditorOptionKey(Of T)) As Boolean

Parameters

left
EditorOptionKey<T>

The left-hand editor option key.

right
EditorOptionKey<T>

The right-hand editor option key.

Returns

true if the two keys are different, otherwise false.

Applies to