当我宣布,
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.