My application is defining the method name to the string at runtime. And I want to call that method from string.
Example
private void ButtonClick(){
string goVoid;
goVoid = "testVoid";
goVoid(); // Calling testVoid
}
testVoid(){
//code
}