Assign method name to Func by string

drertAssisa

New Member
basically I want to do this:\[code\]Func<string> f = ()=> MyMethodName();\[/code\]only having a string name of a method, i.e.:\[code\] Func<string> f = "MyMethodName";\[/code\]Can this be done? Any problems, caveats? Can Reflection help? Can I first check if a method exist?
 
Back
Top