op_Equality

operator ==

Compares two Argb32Color colors and returns a boolean indicating if the two do match.

public static bool operator ==(Argb32Color left, Argb32Color right)
Parameter Type Description
left Argb32Color The first Argb32Color to check
right Argb32Color The second Argb32Color to check

Return Value

True if both colors are equal, otherwise false.

See Also


operator ==

Compares one Argb32Color color with another Rgb24Color color and returns a boolean indicating if the two do match.

public static bool operator ==(Argb32Color left, Rgb24Color right)
Parameter Type Description
left Argb32Color The first Argb32Color to check
right Rgb24Color The second Rgb24Color to check

Return Value

True if both colors are equal, otherwise false.

See Also