ConstructorInfo.Equality(ConstructorInfo, ConstructorInfo) Operator

Definition

Indicates whether two ConstructorInfo objects are equal.

public:
 static bool operator ==(System::Reflection::ConstructorInfo ^ left, System::Reflection::ConstructorInfo ^ right);
public static bool operator == (System.Reflection.ConstructorInfo? left, System.Reflection.ConstructorInfo? right);
public static bool operator == (System.Reflection.ConstructorInfo left, System.Reflection.ConstructorInfo right);
static member ( = ) : System.Reflection.ConstructorInfo * System.Reflection.ConstructorInfo -> bool
Public Shared Operator == (left As ConstructorInfo, right As ConstructorInfo) As Boolean

Parameters

left
ConstructorInfo

The first ConstructorInfo to compare.

right
ConstructorInfo

The second ConstructorInfo to compare.

Returns

true if left is equal to right; otherwise false.

Applies to