I\'m currently working on a game and I wish to have a main menu with background image.
However, I find the method Graphics.DrawImage() really slow. I ha
Graphics.DrawImage()
GDI+ is probably not the best choice for games. DirectX/XNA or OpenGL should be preferred as they utilize whatever graphics acceleration is possible and are very fast.