NTAccount.Inequality(NTAccount, NTAccount) Operator

Definition

Compares two NTAccount objects to determine whether they are not equal. They are considered not equal if they have different canonical name representations than the one returned by the Value property or if one of the objects is null and the other is not.

public:
 static bool operator !=(System::Security::Principal::NTAccount ^ left, System::Security::Principal::NTAccount ^ right);
public static bool operator != (System.Security.Principal.NTAccount left, System.Security.Principal.NTAccount right);
public static bool operator != (System.Security.Principal.NTAccount? left, System.Security.Principal.NTAccount? right);
static member op_Inequality : System.Security.Principal.NTAccount * System.Security.Principal.NTAccount -> bool
Public Shared Operator != (left As NTAccount, right As NTAccount) As Boolean

Parameters

left
NTAccount

The left operand to use for the inequality comparison. This parameter can be null.

right
NTAccount

The right operand to use for the inequality comparison. This parameter can be null.

Returns

true if left and right are not equal; otherwise false.

Applies to