MonoCecil Type.IsCOMObject 等效吗?

发布于 2024-11-02 22:04:34 字数 107 浏览 1 评论 0原文

我想创建一个方法,它接受 TypeDefinition 并告诉我它是否代表 COM 对象。 该方法也应该适用于 .NET 4.0“嵌入式 COM 互操作类型”情况。

知道我该怎么做吗?

I'd like to make a method that takes a TypeDefinition and tells me if it represents a COM object.
The method should also work in the .NET 4.0 "Embedded COM Interop Types" case.

Any idea how I could do that?

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

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

发布评论

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

评论(1

煮茶煮酒煮时光 2024-11-09 22:04:34

也许是这样的:

    public static bool IsCOMObject(TypeDefinition type)
    {
        if (type == null)
            throw new ArgumentNullException("type");

        return (type.Attributes & TypeAttributes.Import) == TypeAttributes.Import;
    }

来自此处的官方参考:公共语言基础设施 (CLI)。第二部分:元数据定义和语义

10.1 类型头(ClassHeader):

特定于实现(Microsoft)

上面的语法还包括
ClassAttr ::= import 表明
该类型是从 COM 类型导入的
图书馆。

Maybe something like this:

    public static bool IsCOMObject(TypeDefinition type)
    {
        if (type == null)
            throw new ArgumentNullException("type");

        return (type.Attributes & TypeAttributes.Import) == TypeAttributes.Import;
    }

From official reference here: Common Language Infrastructure (CLI). Partition II: Metadata Definition and Semantics.

10.1 Type header (ClassHeader):

Implementation-specific (Microsoft)

The above grammar also includes
ClassAttr ::= import to indicate that
the type is imported from a COM type
library.

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