op_Inequality

Status Inequality operator

The inequality operator (!=) returns false if its operands are equal, true otherwise.

public static bool operator !=(Status status1, Status status2)
Parameter Type Description
status1 Status First object to compare
status2 Status Second object to compare

Return Value

true if the first status is not equal to the second status; otherwise, false.

See Also