Treefrog.Framework.Imaging.Rectangle.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : Rectangle
return Rectangle
        public static Rectangle operator +(Rectangle rect, Size sz)
        {
            return new Rectangle(rect.Location, rect.Size + sz);
        }

Same methods

Rectangle::operator ( ) : bool