CharacterRange.Equals Méthode
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.
Surcharges
Equals(CharacterRange) |
Indique si le instance actuel est égal à un autre instance du même type. |
Equals(Object) |
Obtient une valeur indiquant si cet objet équivaut à l'objet spécifié. |
Equals(CharacterRange)
- Source:
- CharacterRange.cs
- Source:
- CharacterRange.cs
- Source:
- CharacterRange.cs
Indique si le instance actuel est égal à un autre instance du même type.
public:
virtual bool Equals(System::Drawing::CharacterRange other);
public bool Equals (System.Drawing.CharacterRange other);
public readonly bool Equals (System.Drawing.CharacterRange other);
override this.Equals : System.Drawing.CharacterRange -> bool
Public Function Equals (other As CharacterRange) As Boolean
Paramètres
- other
- CharacterRange
Instance à comparer à cette instance.
Retours
true
si le instance actuel est égal à l’autre instance ; sinon, false
.
Implémente
S’applique à
Equals(Object)
- Source:
- CharacterRange.cs
- Source:
- CharacterRange.cs
- Source:
- CharacterRange.cs
Obtient une valeur indiquant si cet objet équivaut à l'objet spécifié.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
public override bool Equals (object? obj);
public override readonly bool Equals (object? obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Paramètres
- obj
- Object
Objet auquel comparer en termes d'égalité.
Retours
true
pour indiquer que l'objet spécifié est une instance qui a les mêmes valeurs First et Length que cette instance ; sinon, false
.
Exemples
L'exemple suivant décrit comment utiliser la méthode Equals. Pour exécuter cet exemple, collez-le dans un Windows Form. Gérez l’événement du Paint formulaire et appelez la CharacterRangeEquality2
méthode à partir de la Paint méthode de gestion des événements, en passant e
comme PaintEventArgs.
private void CharacterRangeEquality2()
{
// 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.Equals(range2))
MessageBox.Show("The ranges are equal.");
else
MessageBox.Show("The ranges are not equal.");
}
Private Sub CharacterRangeEquality2()
' 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.Equals(range2) Then
MessageBox.Show("The ranges are equal.")
Else
MessageBox.Show("The ranges are not equal.")
End If
End Sub
Remarques
Vous pouvez également utiliser Equality pour tester l’égalité.