I have an object with some methods and I want to call a method using the method name as string only.
object obj; obj.method();
object obj; var dyn = (dynamic) obj; dyn.method();