c# – Outlook互操作性

前端之家收集整理的这篇文章主要介绍了c# – Outlook互操作性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我宣布,
Microsoft.Office.Interop.Excel.ApplicationClass excel =
         new Microsoft.Office.Interop.Excel.ApplicationClass();

我收到错误

‘Microsoft.Office.Interop.Outlook.ApplicationClass’无法嵌入.改用适用的界面.

类型“Microsoft.Office.Interop.Outlook.ApplicationClass”没有定义构造函数

解决办法是什么?

解决方法

使用界面:
Microsoft.Office.Interop.Outlook.Application outlook = new Microsoft.Office.Interop.Outlook.Application()

或禁用此程序集的Interop类型的嵌入(参考 – > Microsoft.Office.Interop.Outlook(右键单击) – >属性 – >将“嵌入互操作类型”设置为False)

更多信息为什么可以在这里找到:http://blogs.msdn.com/b/mshneer/archive/2009/12/07/interop-type-xxx-cannot-be-embedded-use-the-applicable-interface-instead.aspx.

原文链接:/csharp/94254.html

猜你在找的C#相关文章