[C#]
static Rectangle operator + (Rectangle r, Point p);
static Rectangle operator + (Rectangle r, Size s);
[Visual Basic]
Shared Function Operator + (r As Rectangle, p As Point) As Rectangle
Shared Function Operator + (r As Rectangle, s As Size) As Rectangle
|