Friends who are familiar with JavaScript may not be unfamiliar with the Eval() function. We can use it to implement the execution of dynamic code. I even wrote a web page that is specially used to calculate arithmetic expressions. The calculation ability is better than that of Google and Baidu calculators, at least with higher accuracy. However, if the four operations exceed the number of operations, the form of the expression will be very complicated, such as the example given by Baidu:
log((5+5)^2)-3+pi needs to be written as ((5+5,2))*Math.LOG10E-3+ to be used for calculations with Eval. I have not thought of an ideal solution for this. OK, this is not the main topic of this article, let’s just let it go.
I have seen people use the following code in the blog park, at least in terms of code form, it is quite simple:
// /r:C:\WINDOWS\\Framework\v1.1.4322\ //Note: Two namespaces need to be added.public class Class1 { static void Main(string[] args) { ("Hello World"); string Expression = "var result:int =0;result==1?\"success\":\"fail\""; ve = (); ((Expression, ve)); } }
However, it is unpleasant that the compilation environment now gives the following warning: '' is obsolete: 'Use of this type is not recommended because it is being deprecated in Visual Studio 2005; there will be no replacement for this feature. Please see the ICodeCompiler documentation for additional help.' Of course, the code can be compiled and executed normally.
Below I will give another method to directly use javascript's Eval function. With the help of the com component, the reference path is%SystemRoot%\system32\, I will post the complete code directly.
using System; using ; using ; using ; namespace ScriptProgramming { class Program { static void Main(string[] args) { string strExpression = "1+2*3"; string strResult = Eval(strExpression); (strExpression + "=" + strResult); ("Press any key to continue."); (); } /// <summary> /// Reference com component Microsoft Script Control /// %SystemRoot%\system32\ /// This function is used to execute code dynamically /// </summary> /// <param name="Expression"></param> /// <returns></returns> public static string Eval(string Expression) { string strResult = null; try { jscript = new (); = "JScript"; strResult = (Expression).ToString(); } catch (Exception ex) { (); } return strResult; } } }
The above detailed explanation of dynamic code execution (Eval of js) examples is all the content I share with you. I hope you can give you a reference and I hope you can support me more.