Color of a screen pixel: Difference between revisions

(Don't copy entire screen (thanks to F# example))
Line 16:
using System.Drawing;
using System.Windows.Forms;
 
int w = Screen.PrimaryScreen.Bounds.Width;
int h = Screen.PrimaryScreen.Bounds.Height;
 
Bitmap img = new Bitmap(1, 1);
Anonymous user