Hyena.Gui.Canvas.Thickness.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator == (Thickness t1, Thickness t2)
        {
            return t1.left == t2.left &&
                t1.right == t2.right &&
                t1.top == t2.top &&
                t1.bottom == t2.bottom;
        }