Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
6  
Pretty easy to do with reflection. codeproject.com/Articles/17269/Reflection-in-C-Tutorial – asawyer Jul 27 '12 at 21:49
Considering your sample of "sum", perhaps you plan on using a general math/scripting? Perhaps FLEE can be useful if that's the case: flee.codeplex.com – Chris Sinclair Jul 27 '12 at 22:12

1 Answer

As far as i understand your question. You want something like a eval function. String to Code ? As asawyer said, it is possible using reflection

Check out

C# Eval Function

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.