I have a set of calculation methods sitting in a .Net DLL. I would like to make those methods available to Excel (2003+) users so they can use them in their spreadsheets.
For example, my .net method:
public double CalculateSomethingReallyComplex(double a, double b) {...}
I would like enable them to call this method just by typing a formula in a random cell:
=CalculateSomethingReallyComplex(A1, B1)
What would be the best way to accomplish this?