views:

62

answers:

2

Much as the question states, there is Microsoft.Office.Interop.Excel.Extensions (part of VSTO Power Tools)which offers a series of handy extension methods for calling Excel interop code from C#. Are there other 3rd party/open source libraries that ppl are aware of that can be used in the same way? i.e. to either hide parameters (of methods not already covered by the main extensions namespace) or provide other extenisable functionality such as for ranges, lists and other "enumerable" type objects.

+1  A: 

Extensionmethod.net is a website where people can post extension methods to a searchable database.

Additionally, there are quite a few projects over on Codeplex if you search.

Dr Herbie
thanks Doctor Herbie, will check it out.
Anonymous Type
A: 

Using the codeplex I found the EPPlus project
which uses the ExcelPackage project.

which provides advanced functionality for adding charts, formatting, and images when creating Excel workbooks without the Excel.Interop namespace.

Not exactly what I wanted (was looking for extensions to Excel.Interop) but its cool and I will check it out.

Checked Extensionmethods.net but there is nothing Excel or office specific.

Anonymous Type