码迷,mamicode.com
首页 > 其他好文 > 详细

4 如何获得控制台应用程序的路径

时间:2014-06-18 06:16:29      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   get   使用   2014   


如何获得控制台应用程序的路径

(1) 使用反射获得执行程序集路径
(2) 传递IO.Path.GetDirectoryName


示例代码:
static void GetAppPath()
{
    string path = System.Reflection.Assembly.GetExecutingAssembly().Location;
    Console.WriteLine(System.IO.Path.GetDirectoryName(path));
}



4 如何获得控制台应用程序的路径,布布扣,bubuko.com

4 如何获得控制台应用程序的路径

标签:class   blog   code   get   使用   2014   

原文地址:http://blog.csdn.net/u011685627/article/details/31852353

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!