CharacterRange.Equality(CharacterRange, CharacterRange) Opérateur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Compare deux objets CharacterRange. Obtient une valeur indiquant si les valeurs First et Length des deux objets CharacterRange sont égales.
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 ( = ) : System.Drawing.CharacterRange * System.Drawing.CharacterRange -> bool
Public Shared Operator == (cr1 As CharacterRange, cr2 As CharacterRange) As Boolean
Paramètres
- cr1
- CharacterRange
CharacterRange à comparer en termes d'égalité.
- cr2
- CharacterRange
CharacterRange à comparer en termes d'égalité.
Retours
true
pour indiquer que les deux objets CharacterRange ont les mêmes valeurs First et Length ; sinon, false
.
Exemples
L’exemple suivant montre comment utiliser l’opérateur Equality . Pour exécuter cet exemple, collez-le dans un Windows Form. Gérez l’événement du Paint formulaire et appelez la CharacterRangeEquality1
méthode à partir de la Paint méthode de gestion des événements, en passant comme e
PaintEventArgs.
private void CharacterRangeEquality1()
{
// 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("strings"), "strings".Length);
if (range1 == range2)
MessageBox.Show("The ranges are equal.");
else
MessageBox.Show("The ranges are not equal.");
}
Private Sub CharacterRangeEquality1()
' 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("strings"), _
"strings".Length)
If range1 = range2 Then
MessageBox.Show("The ranges are equal.")
Else
MessageBox.Show("The ranges are not equal.")
End If
End Sub
Remarques
Vous pouvez également tester l’égalité à l’aide de la Equals méthode .
La méthode équivalente pour cet opérateur est CharacterRange.Equals(Object)