String.Inequality(String, String) 演算子
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した 2 つの文字列の値が異なるかどうかを判断します。
public:
static bool operator !=(System::String ^ a, System::String ^ b);
public static bool operator != (string a, string b);
public static bool operator != (string? a, string? b);
static member op_Inequality : string * string -> bool
Public Shared Operator != (a As String, b As String) As Boolean
パラメーター
- a
- String
比較する最初の文字列または null
。
- b
- String
比較する 2 番目の文字列または null
。
戻り値
true
の値が a
の値と異なる場合は b
。それ以外の場合は false
。
例
次の例は、等しくない演算子を示しています。
// Example for the String Inequality operator.
using namespace System;
void CompareAndDisplay( String^ Comparand )
{
String^ Lower = "abcd";
Console::WriteLine( "\"{0}\" != \"{1}\" ? {2}", Lower, Comparand, Lower != Comparand );
}
int main()
{
Console::WriteLine( "This example of the String Inequality operator\n"
"generates the following output.\n" );
CompareAndDisplay( "ijkl" );
CompareAndDisplay( "ABCD" );
CompareAndDisplay( "abcd" );
}
/*
This example of the String Inequality operator
generates the following output.
"abcd" != "ijkl" ? True
"abcd" != "ABCD" ? True
"abcd" != "abcd" ? False
*/
// Example for the String Inequality operator.
using System;
class InequalityOp
{
public static void Main()
{
Console.WriteLine(
"This example of the String Inequality operator\n" +
"generates the following output.\n" );
CompareAndDisplay( "ijkl" );
CompareAndDisplay( "ABCD" );
CompareAndDisplay( "abcd" );
}
static void CompareAndDisplay( String Comparand )
{
String Lower = "abcd";
Console.WriteLine(
"\"{0}\" != \"{1}\" ? {2}",
Lower, Comparand, Lower != Comparand );
}
}
/*
This example of the String Inequality operator
generates the following output.
"abcd" != "ijkl" ? True
"abcd" != "ABCD" ? True
"abcd" != "abcd" ? False
*/
注釈
メソッド Inequality は、 クラスの等しくない演算子の操作を定義 String します。 [例] セクションに示されている などのコードが有効になります。
次に、 演算子は静的メソッドを呼び出します。このメソッドは序数 (大文字と小文字を区別し、カルチャを区別しない Inequality Equals(String, String) ) 比較を実行します。
注意
このVisual Basicは、 メソッドの呼び出しとして等しくない演算子を解決 Inequality できません。 代わりに、inequality 演算子は メソッドの呼び出しをラップ Operators.CompareString します。