How to invoke multiple function from string "Mystring.ToUpper().FirstPart(3).Replace("M","Ok") C# .net – Asp.net
In server side want do a nested operation with a string. .It will be in dynamic format. I'm trying with razor engine for this. Any ideas.. Eg: "Mystring.ToUpper().FirstPart(3).Replace("M","Ok")" This string mentioned with the functions name. Var input = "Mystring.ToUpper().FirstPart(3).Replace("M","Ok"); FirstPart(int…