op_Equality

operator ==

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

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

Return Value

True if both colors are equal, otherwise false.

See Also


operator ==

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

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

Return Value

True if both colors are equal, otherwise false.

See Also