CustomAttributeTypedArgument.Equality Operator

Definition

Tests whether two CustomAttributeTypedArgument structures are equivalent.

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

Parameters

left
CustomAttributeTypedArgument

The CustomAttributeTypedArgument structure to the left of the equality operator.

right
CustomAttributeTypedArgument

The CustomAttributeTypedArgument structure to the right of the equality operator.

Returns

true if the two CustomAttributeTypedArgument structures are equal; otherwise, false.

Remarks

The equivalent method for this operator is CustomAttributeTypedArgument.Equals.

Applies to