I need to develop C# application where a user can call some customized functions that have been developed by us, that have to be executed at run time.
For example, suppose I have developed a class which has the following methods:
- Sum(params int[] values )
- GreaterThan(int Value,int CompareValue).
Now I want to provide a User Interface to the user, where they can call these in nested manner. For example:
GreaterThan(Sum(1,5,6,8),15)
My application then will then parse this and execute the functions accordingly. How do I approach this?
Hope my requirement is clear and will get some solutions to this.