Char.Equals Method (Char)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns a value indicating whether this instance is equal to the specified Char object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
- Type: System.Char
A Char object to compare to this instance.
Return Value
Type: System.Booleantrue if the value parameter equals the value of this instance; otherwise, false.
Implements
IEquatable(Of T).Equals(T)This method implements the System.IEquatable(Of T) interface, and performs slightly better than Char.Equals because it does not need to unbox the obj parameter.
Show: