I have a method where I'd like to use a Rectangle optional parameter with default value of (1,1,1,1).
void Method(int i, int j = 1, Rectangle rect = new Rectangle(1,1,1,1)) {} //error
How do I resolve this? (I'm using XNA, so it's a Microsoft.Xna.Framework.Rectangle.)
nulland string constant expressions (forstringonly of course) – James Michael Hare Aug 27 '12 at 18:03