如何修复此警告,请?
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;
答案 0 :(得分:1)
函数定义不能接受Excel.Range,而只接受对象。
因此用
替换签名object[,] FUNCTION_XXX(object range01, object range02)
然后
将这些内容转换为Excel.Range
可以解决问题。