CrossUI.Color.Equals C# (CSharp) Method

Equals() public method

public Equals ( Color other ) : bool
other Color
return bool
        public bool Equals(Color other)
        {
            return Red.Equals(other.Red) && Green.Equals(other.Green) && Blue.Equals(other.Blue) && Alpha.Equals(other.Alpha);
        }

Same methods

Color::Equals ( object obj ) : bool