如何获取代码所在的程序集的路径?

如何获取代码所在的程序集的路径?,第1张

如何获取代码所在的程序集的路径

我定义了以下属性,因为我们在单元测试中经常使用此属性。

public static string AssemblyDirectory{    get    {        string prebase = Assembly.GetExecutingAssembly().Codebase;        UriBuilder uri = new UriBuilder(prebase);        string path = Uri.UnescapeDataString(uri.Path);        return Path.GetDirectoryName(path);    }}

Assembly.Location
使用NUnit时,该属性有时会给您一些有趣的结果(程序集从一个临时文件夹运行),所以我更喜欢使用
Codebase
URI以URI格式提供路径,然后
UriBuild.UnescapeDataString
删除
File://
开头的内容,并将其
GetDirectoryName
更改为正常的Windows格式。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5567578.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存