I try to convert a part of code from VBScript to C#.
I have these lines :
string replacementMatch = ....;
…
replacementMatch = Eval(replacementMatch);
OR
Execute(replacementMatch);
I can’t find the equivalent in C#.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Eval function evaluates an expression and returns the result. You will not find an equivalent in statically typed languages such as C# and VB.NET. There are some libraries that provide such functionality such as flee.