ConsoleKeyInfo.Equality(ConsoleKeyInfo, ConsoleKeyInfo) Operator

Definition

Indicates whether the specified ConsoleKeyInfo objects are equal.

public:
 static bool operator ==(ConsoleKeyInfo a, ConsoleKeyInfo b);
public static bool operator == (ConsoleKeyInfo a, ConsoleKeyInfo b);
static member ( = ) : ConsoleKeyInfo * ConsoleKeyInfo -> bool
Public Shared Operator == (a As ConsoleKeyInfo, b As ConsoleKeyInfo) As Boolean

Parameters

a
ConsoleKeyInfo

The first object to compare.

b
ConsoleKeyInfo

The second object to compare.

Returns

true if a is equal to b; otherwise, false.

Remarks

Two ConsoleKeyInfo objects are equal if their corresponding KeyChar, Key, and Modifiers properties are equal.

The equivalent method for this operator is ConsoleKeyInfo.Equals(ConsoleKeyInfo).

Applies to