本文主要是介绍C# automation Excel,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
C# automation Excel
添加using:
using System.Reflection;
using Excel = Microsoft.Office.Interop.Excel;
加入引用:
C:\Program Files\Microsoft Visual Studio 10.0\Visual Studio Tools for Office\PIA\Office12\Microsoft.Office.Interop.Excel.dll测试代码:
namespace Tmp
{class Program{static void Main(string[] args){Excel.Application app = null;app = new Excel.Application();if ( null != app ){app.Visible = true;//TODO: do somethingapp.Quit();}}}
}
这篇关于C# automation Excel的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!