在 .NET 和基于 COM 的组件之间传递时必须转换什么类型的数据?

发布于 2024-11-25 17:10:38 字数 174 浏览 0 评论 0原文

以下问题的正确答案是什么:

在 .NET 和基于 COM 的组件之间传递时必须转换什么类型的数据?

  1. 仅包含简单值类型的类对象
  2. 基于 COM 的不变量
  3. 一维数组
  4. 基于 COM 的 BSTR 数据
  5. 简单值类型

What is the correct answer to the following question:

What type of data must be converted when passed between .NET and COM-based components?

  1. A class object containing only simple value types
  2. COM-based Invariants
  3. One-dimensional arrays
  4. COM-based BSTR data
  5. Simple value types

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

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

发布评论

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

评论(1

半仙 2024-12-02 17:10:38

您似乎在询问 blittable 类型。有关 blittable 类型,请参阅 MSDN

此 MSDN 区域中有很多有关互操作封送处理的好信息。

  1. 对于包含值类型的对象,您可以实现 IConvertible 接口,其中您可以定义每个类成员如何转换为 COM 变体类型。请参阅这篇 MSDN 文章了解更多信息。
  2. 您可以在此处将托管类型与 COM 类型进行比较。
  3. blittable 类型的一维数组(例如整数数组)是 blittable 的。但是,包含可直接传送类型的变量数组的类型本身并不是可直接传送的。
  4. 默认情况下,System.String 被编组到 BSTR,反之亦然。
  5. 大多数简单类型都是不需要转换的 blittable 类型。请参阅之前的参考资料。

It seems you're asking about blittable types. See MSDN on blittable types.

Lots of good info on interop marshaling in this MSDN area.

  1. For objects containing value types, you can implement the IConvertible interface where you define how each of the class members converts to a COM variant type. See more in this MSDN article.
  2. You can compare managed types to COM types here.
  3. One-dimensional arrays of blittable types, such as an array of integers, are blittable. However, a type that contains a variable array of blittable types is not itself blittable.
  4. System.String is marshaled to a BSTR by default, and vice versa.
  5. Most simple types are blittable types that don't require conversion. See previous references.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文