String.op_Inequality-Methode
Bestimmt, ob zwei angegebene String-Objekte verschiedene Werte haben.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
a As String, _
b As String _
) As Boolean
'Usage
Dim a As String
Dim b As String
Dim returnValue As Boolean
returnValue = (a <> b)
public static bool operator != (
string a,
string b
)
public:
static bool operator != (
String^ a,
String^ b
)
J# unterstützt keine überladenen Operatoren.
JScript unterstützt die Verwendung von überladenen Operatoren, aber nicht die Deklaration von neuen überladenen Operatoren.
Parameter
- a
Ein String oder NULL (Nothing in Visual Basic).
- b
Ein String oder NULL (Nothing in Visual Basic).
Rückgabewert
true, wenn der Wert von a vom Wert von b verschieden ist, andernfalls false.
Hinweise
Dieser Operator ist unter Verwendung der Equals-Methode implementiert. Dies bedeutet, dass die Operanden auf eine Kombination von Verweis- und Wertgleichheit überprüft werden. Dieser Operator führt einen Ordinalvergleich aus.
Beispiel
Im folgenden Beispiel wird der Ungleichheitsoperator veranschaulicht.
' Example for the String Inequality operator.
Imports System
Imports Microsoft.VisualBasic
Module InequalityOp
Sub Main()
Console.WriteLine( _
"This example of the String Inequality operator" & _
vbCrLf & "generates the following output." & vbCrLf)
CompareAndDisplay("ijkl")
CompareAndDisplay("ABCD")
CompareAndDisplay("abcd")
End Sub 'Main
Sub CompareAndDisplay(Comparand As String)
Dim Lower As String = "abcd"
Console.WriteLine( _
"""{0}"" <> ""{1}"" ? {2}", _
Lower, Comparand, Lower <> Comparand)
End Sub 'CompareAndDisplay
End Module 'InequalityOp
' 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
*/
// 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.
import System.*;
class InequalityOp
{
public static void main(String[] args)
{
Console.WriteLine(("This example of the String Inequality operator\n"
+ "generates the following output.\n"));
CompareAndDisplay("ijkl");
CompareAndDisplay("ABCD");
CompareAndDisplay("abcd");
} //main
static void CompareAndDisplay(String comparand)
{
String lower = "abcd";
Console.WriteLine("\"{0}\" != \"{1}\" ? {2}", lower, comparand,
System.Convert.ToString(!lower.equals(comparand)));
} //CompareAndDisplay
} //InequalityOp
/*
This example of the String Inequality operator
generates the following output.
"abcd" != "ijkl" ? True
"abcd" != "ABCD" ? True
"abcd" != "abcd" ? False
*/
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0