Scenario:
I have my function names and there parameters stored in the database. The function name along with the parameters are return from the database as
"FunctionName(Convert.ToString("harry"),Convert.ToString("Password"),Convert.ToInt32("5"),Convert.ToString(""),Convert.ToString("AMER_02772"),Convert.ToInt32("0"))"
Question:
Now I want to execute this function returned to me as a string? Please guide me the way to execute this string?
I have read similar sort of post but could not find the exact result.