系统.反射
让我们考虑一下我有一个应用程序 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对:的调用
将返回其写入的程序集(当前正在执行的程序集)。或者在您的情况下,也许您需要:
获取可执行程序集(应用程序启动时使用的程序集)。
The call to:
will return the assembly it's written in (the currently executing assembly). Or in your case, maybe you'll need:
to get the executable assembly (the assembly that the application was started with).