CharacterRange.Equality(CharacterRange, CharacterRange) 演算子
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
2 つの CharacterRange オブジェクトを比較します。 2 つの CharacterRange オブジェクトの First 値および Length 値が等しいかどうかを示す値を取得します。
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
パラメーター
- cr1
- CharacterRange
等しいかどうかを比較する CharacterRange です。
- cr2
- CharacterRange
等しいかどうかを比較する CharacterRange です。
戻り値
2 つの CharacterRange オブジェクトの First 値と Length 値が同じであることを示す場合は true
、それ以外の場合は false
です。
例
次の例では、 演算子の使用方法を Equality 示します。 この例を実行するには、Windows フォームに貼り付けます。 フォームのPaintイベントを処理し、イベント処理メソッドから メソッドをPaint呼び出しCharacterRangeEquality1
、 を としてPaintEventArgs渡しますe
。
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
注釈
メソッドを使用して等値を Equals テストすることもできます。
この演算子の同等のメソッドは 次のようになります。 CharacterRange.Equals(Object)
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET