CustomAttributeTypedArgument.Inequality Operator

Definition

Tests whether two CustomAttributeTypedArgument structures are different.

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 op_Inequality : 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 inequality operator.

right
CustomAttributeTypedArgument

The CustomAttributeTypedArgument structure to the right of the inequality operator.

Returns

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

Remarks

The equivalent method for this operator is CustomAttributeTypedArgument.Equals.

Applies to