如何启动.exe文件?

C# 小技巧
C# 小技巧System.Diagnostics.Process.Start(
"iexplore.exe","http://www.sina.com.cn"); 
C# 小技巧
C# 小技巧
C# 小技巧System.Diagnostics.Process.Start();

---------------------------------
获得桌面路径:

C# 小技巧Environment.GetFolderPath(Environment.SpecialFolder.Desktop).ToString 

---------------------------------

获得系统盘符:

C# 小技巧System.Environment.GetEnvironmentVariable("SystemDrive")
---------------------------------
得到屏幕分辨率:
C# 小技巧System.Windows.Forms.Screen.PrimaryScreen.Bounds

相关文章: