识别 Reflection.Emit 生成的程序集

发布于 2024-09-19 05:01:06 字数 433 浏览 8 评论 0原文

有没有一种简单的方法来识别 Reflection.Emit 生成的程序集?处理加载到应用程序域中的所有程序集时,动态生成的程序集的 Assembly 实例的行为与标准程序集的行为不同。例如,访问CodeBase属性会导致异常:

string codeBase;
try
{
    codeBase = assembly.CodeBase;
}
catch(NotSupportedException)
{
    // assemblies generated via Reflection.Emit throw an exception when CodeBase is accessed
    codeBase = null;
}

是否有更好的方法来识别这种情况并避免try ... catch块?

Is there a simple way to identify Reflection.Emit-generated assemblies? When processing all assemblies loaded into an application domain, Assembly instances of dynamically generated assemblies don't behave the same as for standard assemblies. For example, accessing the CodeBase property leads to an exception:

string codeBase;
try
{
    codeBase = assembly.CodeBase;
}
catch(NotSupportedException)
{
    // assemblies generated via Reflection.Emit throw an exception when CodeBase is accessed
    codeBase = null;
}

Is there a better way to recognize this situation and avoid the try … catch block?

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

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

发布评论

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

评论(2

以歌曲疗慰 2024-09-26 05:01:06

Assembly.IsDynamic 没有回答您的问题吗?这可能是.Net 4.0中的新内容。

Doesn't Assembly.IsDynamic answer your question? It may be that it is new in .Net 4.0.

拔了角的鹿 2024-09-26 05:01:06

这应该有效:

if (assembly is System.Reflection.Emit.AssemblyBuilder) {
    // It's dynamic
    //...
}

This should work:

if (assembly is System.Reflection.Emit.AssemblyBuilder) {
    // It's dynamic
    //...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文