時的記憶,我得到這個錯誤創造出比賽場
An unhandled exception of type 'System.OutOfMemoryException' occurred in System.Drawing.dll
Additional information: Out of memory.
只要運行這個一分鐘
using (var imageBuffer = new Bitmap(500, 300))
{
using (var graphicsObject = Graphics.FromImage(imageBuffer))
{
graphicsObject.Clear(Color.Azure);
using (var boundryPen = new Pen(Brushes.Black, 10))
{
graphicsObject.DrawRectangle(boundryPen, 0, 0, 500, 300);
}
g.DrawImage((Image)imageBuffer.Clone(), 80, 45); // error coming from this line
}
}
後,我是新來的C#。我試圖做g.dispose(),但它不讓我運行該程序。
這是一個循環中的整個聲明?通過創建無限的克隆? – RustyH
你爲什麼使用'Clone()'? – siride
這怎麼可能*運行一分鐘*? –