AssemblyName 类如何用于现有程序集?

发布于 2024-08-31 23:55:49 字数 256 浏览 2 评论 0原文

这是另一个与考试相关的问题。

如何使用 AssemblyName 类来表示现有的 磁盘上已经存在的程序集?

我是从使用 AppDomain 的实例方法 .Load() 的角度来讨论的,该方法将 AssemblyName 对象作为参数。我知道 MSDN 关于 .Load() 方法的设计目的是怎么说的;但除此之外,我仍然想知道如何使用它。

This is another exam related question.

How can I use the AssemblyName class to represent an existing
assembly that already exists on disk?

I am talking about from the perspective of using the AppDomain's instance method .Load() that takes an AssemblyName object as a parameter. I know what MSDN has to say about what the .Load() method was designed for; but that aside, I still want to know how to use it.

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

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

发布评论

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

评论(1

多孤肩上扛 2024-09-07 23:55:49

不确定我是否看到了这个问题。但是,是的,这可行:

  var name = new AssemblyName("System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
  var asm = Assembly.Load(name);

Not sure I see the question. But yeah, that can work:

  var name = new AssemblyName("System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
  var asm = Assembly.Load(name);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文