- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 COM 在 C++ 和 C# 之间进行通信。
我在 C# 中有以下类
电子邮件地址
/// <summary>
/// Email Address
/// </summary>
public class EmailAddress
{
/// <summary>
/// SMTP Address
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string Address;
/// <summary>
/// Name
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string Name;
}
邮箱
/// <summary>
/// MailBox Entity
/// </summary>
public struct MailBoxEntity
{
/// <summary>
/// SMTP Address
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string SMTPAddress;
/// <summary>
/// Mailbox Display Name
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string Name;
/// <summary>
/// Mailbox Server Name
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string sServerName;
}
EmailEntity(尚未实现 IEmailEntity,它将包含每个字段的属性)
/// <summary>
/// Class for Email Entity
/// </summary>
public class EmailEntity : IEmailEntity
{
/// <summary>
/// BccRecipients
/// </summary>
[MarshalAs(UnmanagedType.ByValArray)]
public EmailAddress[] BccRecipients;
/// <summary>
/// Body
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string Body;
/// <summary>
/// CcRecipients
/// </summary>
[MarshalAs(UnmanagedType.ByValArray)]
public EmailAddress[] CcRecipients;
/// <summary>
/// Culture
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string Culture;
/// <summary>
/// DateTimeCreated
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string DateTimeCreated;
/// <summary>
/// DateTimeReceived
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string DateTimeReceived;
/// <summary>
/// DateTimeSent
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string DateTimeSent;
/// <summary>
/// FromAddress
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string FromAddress;
/// <summary>
/// FromName
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string FromName;
/// <summary>
/// HasAttachments
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string HasAttachments;
/// <summary>
/// Id
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string Id;
/// <summary>
/// Importance
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string Importance;
/// <summary>
/// LastModifiedName
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string LastModifiedName;
/// <summary>
/// LastModifiedTime
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string LastModifiedTime;
/// <summary>
/// MimeContent
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string MimeContent;
/// <summary>
/// ParentFolderId
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string ParentFolderId;
/// <summary>
/// Original Mailbox
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public MailBoxEntity OriginalMailBox;
/// <summary>
/// ParentFolderName
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string ParentFolderName;
/// <summary>
/// ReceivedByAddress
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string ReceivedByAddress;
/// <summary>
/// ReceivedByName
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string ReceivedByName;
/// <summary>
/// Size
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string Size;
/// <summary>
/// Subject
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string Subject;
/// <summary>
/// ToRecipients
/// </summary>
[MarshalAs(UnmanagedType.ByValArray)]
public EmailAddress[] ToRecipients;
}
如何访问从 C# 中的函数返回的 EmailEnity 对象数组(在 C++ 中)并阅读 EmailEntity 类的字段。请注意,EmailEntity 类包含如下成员EmailAddress[] 本身就是一个对象数组。我正计划实现接口(interface) IEmailEntity,其中包含用于访问 EmailEntity 字段的属性并使用它来访问 C++ 中的字段。这是正确的方法吗?
如何在 C++ 中访问复杂的字段成员,例如 EmailAddress (EmailAddress[] ToRecipients) 数组。
请提出建议。
谢谢
最佳答案
您可以像这样简化 .NET 代码(删除所有应自动完成的 MarshalAs):
[ComVisible(true)]
public class MyRootClass : IMyRootClass // some class to start with
{
public IEmailEntity[] GetEntities()
{
List<IEmailEntity> list = new List<IEmailEntity>();
for(int i = 0; i < 10; i++)
{
EmailEntity entity = new EmailEntity();
List<IEmailAddress> addresses = new List<IEmailAddress>();
addresses.Add(new EmailAddress { Name = "Joe" + i });
entity.BccRecipients = addresses.ToArray();
entity.Body = "hello world " + i;
list.Add(entity);
}
return list.ToArray();
}
}
[ComVisible(true)]
public interface IMyRootClass
{
IEmailEntity[] GetEntities();
}
public class EmailEntity : IEmailEntity
{
public IEmailAddress[] BccRecipients { get; set; }
public string Body { get; set; }
}
public class EmailAddress : IEmailAddress
{
public string Address { get; set; }
public string Name { get; set; }
}
[ComVisible(true)]
public interface IEmailAddress
{
string Address { get; set; }
string Name { get; set; }
}
[ComVisible(true)]
public interface IEmailEntity
{
IEmailAddress[] BccRecipients { get; set; }
string Body { get; set; }
// to be continued...
}
要将它与 C++ 一起使用,您需要注册 DLL 并构建一个 .TLB(类型库文件),如此处类似答案中所述:Implement a C# DLL COM File In Unmanaged C++ Program
然后,您可以在 C++ 中访问这些类,如下所示:
#include "stdafx.h"
#import "c:\MyPathToTheTlb\YourAssembly.tlb" // import the COM TLB
using namespace YourAssembly;
int _tmain(int argc, _TCHAR* argv[])
{
CoInitialize(NULL);
IMyRootClassPtr ptr(__uuidof(MyRootClass));
CComSafeArray<IUnknown*> entities = ptr->GetEntities(); // CComSafeArray needs atlsafe.h in the PCH
for(int i = entities.GetLowerBound(0); i <= entities.GetUpperBound(0); i++)
{
IEmailEntityPtr entity;
entities.GetAt(i).QueryInterface(&entity);
_bstr_t body = entity->Body;
printf("%S\n", body.GetBSTR());
CComSafeArray<IUnknown*> recipients = entity->BccRecipients;
for(int j = recipients.GetLowerBound(0); j <= recipients.GetUpperBound(0); j++)
{
IEmailAddressPtr address;
recipients.GetAt(j).QueryInterface(&address);
_bstr_t name = address->Name;
printf(" %S\n", name.GetBSTR());
}
}
CoUninitialize();
}
关于c# - 将对象数组从 C# 返回到 COM 中的 C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16293994/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!