A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://learn.microsoft.com/en-us/dotnet/api/system.char.equals below:

Char.Equals Method (System) | Microsoft Learn

Char.Equals Method Definition

Returns a value that indicates whether this instance is equal to a specified object or Char value.

Overloads Equals(Char)

Returns a value that indicates whether this instance is equal to the specified Char object.

Equals(Object)

Returns a value that indicates whether this instance is equal to a specified object.

Equals(Char)
Source:
Char.cs
Source:
Char.cs
Source:
Char.cs
Source:
Char.cs

Returns a value that indicates whether this instance is equal to the specified Char object.

public:
 virtual bool Equals(char obj);
public bool Equals(char obj);
override this.Equals : char -> bool
Public Function Equals (obj As Char) As Boolean
Parameters
obj
Char

An object to compare to this instance.

Returns

true if the obj parameter equals the value of this instance; otherwise, false.

Implements Remarks

This method implements the System.IEquatable<T> interface, and performs slightly better than Char.Equals(Object) because it does not need to unbox the obj parameter.

See also Equals(Object)
Source:
Char.cs
Source:
Char.cs
Source:
Char.cs
Source:
Char.cs

Returns a value that indicates whether this instance is equal to a specified object.

public:
 override bool Equals(System::Object ^ obj);
public override bool Equals(object obj);
public override bool Equals(object? obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Parameters
obj
Object

An object to compare with this instance or null.

Returns

true if obj is an instance of Char and equals the value of this instance; otherwise, false.

Examples

The following code example demonstrates Equals.

using System;

public class EqualsSample {
    public static void Main() {
        char chA = 'A';
        char chB = 'B';

        Console.WriteLine(chA.Equals('A'));		// Output: "True"
        Console.WriteLine('b'.Equals(chB));		// Output: "False"
    }
}
let chA = 'A'
let chB = 'B'

printfn $"{chA.Equals 'A'}"    // Output: "True"
printfn $"{'b'.Equals chB}"    // Output: "False"
Module EqualsSample

    Sub Main()

        Dim chA As Char
        chA = "A"c
        Dim chB As Char
        chB = "B"c

        Console.WriteLine(chA.Equals("A"c))     ' Output: "True"
        Console.WriteLine("b"c.Equals(chB))     ' Output: "False"

    End Sub

End Module
Remarks

The comparison performed by this method is based on the encoded values of this instance and obj, not necessarily their lexicographical characteristics.

See also

Collaborate with us on GitHub

The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide. In this article

Was this page helpful?


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4