6

在我的 C# 程序中,我使用 Excel 2010 互操作程序集。有了这个,我正在读取和写入数据到 excel 文件。并在开发盒(包含 Office 2010)上执行良好。在客户端计算机上,即使他们有 Office 2010 和 Office PIA,也会看到以下异常,在 WriteToExcel() 方法调用时引发。

Unhandled Exception: System.MissingMethodException: Method not found: 'System.Type System.Runtime.InteropServices.Marshal.GetTypeFromCLSID(System.GUID)'.

下面是我的代码片段。

[STAThread]
static void Main(string[] args){

       // read user input, process and write data to Excel
       WriteToExcel();
 }

[STAThread]
static void WriteToExcel(){
     Application xlsApplication = new Application();
     Workbook xlsWorkbook = xlsApplication.Workbooks.Open(excelFilePath);
     // write data to excel
     // close up            
 }
4

2 回答 2

5

将 .net 版本降低到 4.0 后问题已解决。早些时候我的 devbox 有 4.5,应用程序是用这个版本编译的。我的客户端机器有4.0版本,降低.net版本解决了这个问题。

于 2012-10-02T21:10:17.717 回答
0

尝试使用以下代码:

[STAThread]
static void WriteToExcel()
{
    Application xlsApplication = new Application();
    var missing = System.Type.Missing;
    Workbook xlsWorkbook = xlsApplication.Workbooks.Open(excelFilePath, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing);
    // write data to excel
    // close up            
 }
于 2012-09-29T18:26:41.467 回答