C# -Excel interoperability

后端 未结 6 2084
广开言路
广开言路 2021-02-04 00:36

I want to call Excel Sheet from C# 4.0 (VS 2010 Express Edition) .

When i declare ,

Microsoft.Office.Interop.Excel.ApplicationClass excel =
    new Micro         


        
6条回答
  •  别那么骄傲
    2021-02-04 01:08

    Excel.Application = new Excel.ApplicationClass();
    

    Note the leading Excel.Application, not Excel.ApplicationClass.

    Also note, this is straight out of the MSDN page for ApplicationClass.

提交回复
热议问题