CustomAttributeTypedArgument.Inequality(CustomAttributeTypedArgument, CustomAttributeTypedArgument) 运算符

定义

测试两个 CustomAttributeTypedArgument 结构是否不同。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

参数

left
CustomAttributeTypedArgument

不等运算符左侧的 CustomAttributeTypedArgument 结构。The CustomAttributeTypedArgument structure to the left of the inequality operator.

right
CustomAttributeTypedArgument

不等运算符右侧的 CustomAttributeTypedArgument 结构。The CustomAttributeTypedArgument structure to the right of the inequality operator.

返回

Boolean

如果两个 CustomAttributeTypedArgument 结构不同,则为 true;否则为 falsetrue if the two CustomAttributeTypedArgument structures are different; otherwise, false.

注解

此运算符的等效方法为 CustomAttributeTypedArgument.EqualsThe equivalent method for this operator is CustomAttributeTypedArgument.Equals.

适用于