誰能更快?爲什麼?C#代碼優化
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));
sugest你使用基準System.Diagnostics.StopWatch。問題對於更廣泛的受衆沒有價值或沒有價值... – 2009-06-15 00:41:53
我認爲問題是有效的,不明白爲什麼downvotes! – 2009-06-15 00:41:55
這個問題是有效的,但毫無意義。它最好是微型優化,最好是最好。 – Eric 2009-06-15 00:43:06