我正在尝试创建一个 excel 文件表单 c# 应用程序。
我的代码如下,
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Excel = Microsoft.Office.Interop.Excel;
public class ExcelFileCreation
{
Excel.Application xlApp;
Excel.Workbook xlWorkBook;
Excel.Worksheet xlWorkSheet;
object misValue = System.Reflection.Missing.Value;
***xlApp = new Excel.ApplicationClass();***
xlWorkBook = xlApp.Workbooks.Add(misValue);
//and further lines of code.....
}
我在上面突出显示的行中收到以下错误,
无法嵌入互操作类型“Microsoft.Office.Interop.Excel.ApplicationClass”。请改用适用的接口。
请帮我解决这个问题!