StringInequality Operator |
Determines whether two specified strings have different values.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public static bool operator !=(
string a,
string b
)
Parameters
- a
- Type: SystemString
The first string to compare, or null. - b
- Type: SystemString
The second string to compare, or null.
Return Value
Type:
Booleantrue if the value of
a is different from the value of
b; otherwise, false.
See Also