CharacterRange.Inequality(CharacterRange, CharacterRange) Operador
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Compara dois objetos CharacterRange. Obtém um valor que indica se os valores de First ou Length dos dois objetos CharacterRange não são iguais.
public:
static bool operator !=(System::Drawing::CharacterRange cr1, System::Drawing::CharacterRange cr2);
public static bool operator != (System.Drawing.CharacterRange cr1, System.Drawing.CharacterRange cr2);
static member op_Inequality : System.Drawing.CharacterRange * System.Drawing.CharacterRange -> bool
Public Shared Operator != (cr1 As CharacterRange, cr2 As CharacterRange) As Boolean
Parâmetros
- cr1
- CharacterRange
Um CharacterRange a ser comparado quanto à desigualdade.
- cr2
- CharacterRange
Um CharacterRange a ser comparado quanto à desigualdade.
Retornos
true
para indicar que os valores de First ou Length dos dois objetos CharacterRange são diferentes; caso contrário, false
.
Exemplos
O exemplo a seguir demonstra como usar o Inequality método . Para executar este exemplo, cole-o em um Windows Form. Manipule o evento do Paint formulário e chame o CharacterRangeInequality
método do Paint método de manipulação de eventos, passando e
como PaintEventArgs.
private void CharacterRangeInequality()
{
// Declare the string to draw.
string message = "Strings or strings; that is the question.";
// Compare the ranges for equality. The should not be equal.
CharacterRange range1 =
new CharacterRange(message.IndexOf("Strings"), "Strings".Length);
CharacterRange range2 =
new CharacterRange(message.IndexOf("string"), "strings".Length);
if (range1 != range2)
MessageBox.Show("The ranges are not equal.");
else
MessageBox.Show("The ranges are equal.");
}
Private Sub CharacterRangeInequality()
' Declare the string to draw.
Dim message As String = "Strings or strings; that is the question."
' Compare the ranges for equality. The should not be equal.
Dim range1 As New CharacterRange(message.IndexOf("Strings"), "Strings".Length)
Dim range2 As New CharacterRange(message.IndexOf("string"), "strings".Length)
If range1 <> range2 Then
MessageBox.Show("The ranges are not equal.")
Else
MessageBox.Show("The ranges are equal.")
End If
End Sub
Comentários
O Inequality método retorna o oposto do Equality método .
O método equivalente para esse operador é CharacterRange.Equals(Object)