who could be faster ? and why ?
1:
Point point = new Point(25,25); //any numbers..
Point point2 = new Point(20,95); //any numbers..
Graphics g = CreateGraphics();
g.DrawLine(point,point2);
OR
2:
Graphics g = CreateGraphics();
g.DrawLine(new Point(25,25),new Point(20,95));