System.Drawing.Graphics.DrawImage(Image image, int x, int y) WTF???
public void DrawImage(Image image, int x, int y);
Declaring Type: System.Drawing.Graphics
Assembly: System.Drawing, Version=1.0.5000.0
public void DrawImage(Image image, int x, int y)
{
if (this == null)
{
throw new ArgumentNullException("this");
}
if (image == null)
{
throw new ArgumentNullException("image");
}
int num1 = SafeNativeMethods.GdipDrawImageI(new HandleRef(this, this.nativeGraphics), new HandleRef(image, image.nativeImage), x, y);
this.CheckErrorStatus(num1);
}
I verified this with Lutz Roder's