NTAccount.Inequality Operator (NTAccount, NTAccount)

 

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.

Namespace:   System.Security.Principal
Assembly:  mscorlib (in mscorlib.dll)

public static bool operator !=(
	NTAccount left,
	NTAccount right
)

Parameters

left
Type: System.Security.Principal.NTAccount

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

right
Type: System.Security.Principal.NTAccount

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

Return Value

Type: System.Boolean

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

.NET Framework
Available since 2.0
Return to top
Show: