日期:2014-05-19  浏览次数:20770 次

class library中怎么取自己所在路径?
winform程序中是用application.startuppath,class   library中怎么取呢?

------解决方案--------------------
UP
------解决方案--------------------
using System.Reflection;

Assembly.GetEntryAssembly().Location;

看看这个行不行