PixelFarm.Drawing.Size.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator ==(Size s1, Size s2)
        {
            return (s1._w == s2._w) &&
                  (s1._h == s2._h);
        }
        public static bool operator !=(Size s1, Size s2)