I want execute function c# like Convert.ToInt32([data]);
DateTime.ParseExact("[data]", "dd MMM yyyy", provider
from string. Before execute, I replace the data before
Example:
string aa = "Convert.ToInt32([data]);"
aa = aa.Replace("[data]", "1");
//var bb = result execute from aa
How to exexute like this??