* Rectangle.cs: Fixed ToString formatting code.

This commit is contained in:
the_fiddler 2009-11-06 10:04:32 +00:00
parent 139b6af9fa
commit 92e2104c9d

View file

@ -297,7 +297,7 @@ namespace OpenTK
/// <returns>A <see cref="System.String"/> that describes this instance.</returns>
public override string ToString()
{
return String.Format("{{{0}, {1}}}-{{{2},{3}}}", Location, Size);
return String.Format("{{{0}-{1}}}", Location, Location + Size);
}