I want to know, if in the .net have a class to call a function/method in run time...
e.g:
Enter with a method name to call: sum(10,20)
The code sample, of my Ideia is something like this:
class Program
{
static void sum(int a, int b)
{
Console.WriteLine("{0}", a + b);
}
static void Main(string[] args)
{
Console.Write("Enter with a method name to call: ");
string a = Convert.ToString(Console.ReadLine());
// SAMPLE OF IDEA
ProcessMacro PrM = new ProcessMacro(a);
}
}
So, It's possible to do this ? If yes, how I can do this ?
Thanks.