C# -Excel interoperability

后端 未结 6 2086
广开言路
广开言路 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:05

    Solved:

    Excel.ApplicationClass derives from Excel.Application interface and one can even instantiate Excel using Excel.Application interface. Rewriting this code as below produces exact same results:

    Excel.Application xlapp = new Excel.Application();
    

提交回复
热议问题