op_Equality

Status Equality operator

The inequality operator (==) returns true if its operands are equal, false 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 equal to the second status; otherwise, false.

See Also