C#Excel Addon - 编译警告 - 类型库导出器找不到Microsoft.Office.Interop.Excel.Range的类型库

时间:2011-12-23 14:06:47

标签: c# excel excel-interop

如何修复此警告,请?

Type library exporter could not find the type library for 'Microsoft.Office.Interop.Excel.Range'.  IUnknown was substituted for the interface.

该功能的签名是

public object[,] FUNCTION_XXX(Excel.Range range01, Excel.Range range02)

其中

 using Excel = Microsoft.Office.Interop.Excel;

1 个答案:

答案 0 :(得分:1)

函数定义不能接受Excel.Range,而只接受对象。

因此用

替换签名
object[,] FUNCTION_XXX(object range01, object range02)

然后

将这些内容转换为Excel.Range可以解决问题。