在C#里获得当前路径
如何在C#里获得当前路径?如app.path那样? 1. Application.StartupPath();
System.Windows.Forms.Application.StartupPath;
2. System.Environment包括许多的关于当前系统环境的静态函数
System.Environment.CurrentDirectory; //可以返回当前路径
3. AppDomain.CurrentDomain.BaseDirectory;
System.AppDomain.CurrentDomain.BaseDirectory;