欢迎使用CSDN-markdown编辑器

来源:互联网 发布:三国志mac下载地址 编辑:程序博客网 时间:2024/06/07 05:10

C#获取bin路径

//获取到bin目录的下层路径:bin\Debug\            string aa=System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;            string cc = System.AppDomain.CurrentDomain.BaseDirectory;    //获取到bin目录:bin\Debug            string dd = System.Environment.CurrentDirectory;            string ee = System.IO.Directory.GetCurrentDirectory();            string ff = System.Windows.Forms.Application.StartupPath;    //获取程序.exe            string bb = System.Windows.Forms.Application.ExecutablePath
原创粉丝点击