How to add several functions with same name and different parameter types?
I am adding functions to FR using RegisterObjects.AddFunction()
It works great, but now I do not know how to add several functions with the same name but different parameter types.
For example:
Sqrt(int value)
Sqrt(short value)
Sqrt(double value)
Thank you
It works great, but now I do not know how to add several functions with the same name but different parameter types.
For example:
Sqrt(int value)
Sqrt(short value)
Sqrt(double value)
Thank you
Comments
Please inspect the Demos\C#\UserFunctions demo.