系统.反射

发布于 2024-10-04 17:55:00 字数 100 浏览 4 评论 0原文

让我们考虑一下我有一个应用程序 AAA。我从我的应用程序加载了一个名为 BBB 的程序集。当我位于 BBB 路径中时,我需要在运行时获取 AAA 程序集名称。 如何做到这一点? 提前致谢

let us consider im having an application AAA. From my application im loaded an assembly named as BBB.When im in BBB path, i need to get the AAA Assembly name at run time.
how to accomplish this?
Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

徒留西风 2024-10-11 17:55:00

对:的调用

Assembly.GetExecutingAssembly()

将返回其写入的程序集(当前正在执行的程序集)。或者在您的情况下,也许您需要:

Assembly.GetEntryAssembly()

获取可执行程序集(应用程序启动时使用的程序集)。

The call to:

Assembly.GetExecutingAssembly()

will return the assembly it's written in (the currently executing assembly). Or in your case, maybe you'll need:

Assembly.GetEntryAssembly()

to get the executable assembly (the assembly that the application was started with).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文