I am trying to call excel functions from C#. I can use the following code to get the excel functions:
Application app = new Application();
WorksheetFunction functions = app.WorksheetFunction;
var sum = functions.Sum(1, 2);
I can get the function like SUM from the WorksheetFunction object. But now all the functions are there, like LEFT, RIGHT, DATE etc. Can I find them somewhere else?