Click or drag to resize
StringEquality Operator
Determines whether two specified strings have the same value.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
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: Boolean
true if the value of a is the same as the value of b; otherwise, false.
See Also