0

I have an Excel 2010 Automation project using Microsoft Office Interop library in C#.NET. But now i need to migrate it to work with Open XML SDK 2.0. Any guidelines or suggestions?

Srinivas
  • 2,479
  • 8
  • 47
  • 69

1 Answers1

1

OpenXML SDK provides far too many low level access / functions. It consumes some time to master but has huge flexibility.

For starters, use libraries like EPPlus or ExcelPackage. If you have very very large files to process frequently, OpenXML should be best bet.

CKmum
  • 641
  • 6
  • 17