vote up 1 vote down star

What is the easiest way to convert a Rectangle to a RectangleF in .NET?

Edit: This sounds trivial and it is, but I was trying to save some typing. The best I could come up with:

RectangleF rdest(rsrc.Location, rsrc.Size); // C++/CLI

...or...

RectangleF rdest = new RectangleF(rsrc.Location, rsrc.Size) // C#
flag

50% accept rate

1 Answer

vote up 4 vote down check
//RectangleF rectanglef = (RectangleF)rectangle;

Update: there's an implicit converter, so you can simply do:

RectangleF rectanglef = rectangle;

http://msdn.microsoft.com/en-us/library/system.drawing.rectanglef.op_implicit.aspx

In fact, you already knew that. It's easily missed, but your code is using two such implicit casts - you're using Point and Size where there should be PointF and SizeF.

link|flag
:D This is great!! Thanks. – Agnel Kurian Aug 27 at 5:56
+1 great answer! – ArsenMkrt Aug 27 at 6:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.