由于程序需要,计算的表达式使用字符串传输,这样对运算造成了影响。在程序中直接执行这段表达式可以得到值,

但是使用字符串就没有办法运算了,

所以想到用CodeDOM将这段字符串拼接在代码中编译

类似string str="1>0";  需要返回True,同样也是用这种方式

using System;
using System.CodeDom.Compiler;
using System.Reflection;
using System.Text;
using Microsoft.CSharp;

namespace Test
{
    public class Program
    {
        static void Main(string[] args)
        {
            string text ="Math.Pow(Math.Sqrt(((2.08 * 0.2 + 1.82 * 0.2 + 2.02 * 0.2 + Math.Sqrt(3.08) * 0.1 + 2.18 * 0.1 + Math.Log10(2.13 * 0.1 + 2.13 * 0.1)) / 5) * 100),3)";

            // 1.CSharpCodePrivoder
            CSharpCodeProvider objCSharpCodePrivoder = new CSharpCodeProvider();

            // 2.ICodeComplier
            ICodeCompiler objICodeCompiler = objCSharpCodePrivoder.CreateCompiler();

            // 3.CompilerParameters
            CompilerParameters objCompilerParameters = new CompilerParameters();
            objCompilerParameters.ReferencedAssemblies.Add("System.dll");
            objCompilerParameters.GenerateExecutable = false;
            objCompilerParameters.GenerateInMemory = true;

            // 4.CompilerResults
            CompilerResults cr = objICodeCompiler.CompileAssemblyFromSource(objCompilerParameters, GenerateCode(text));

            if (cr.Errors.HasErrors)
            {
                Console.WriteLine("编译错误:");
                foreach (CompilerError err in cr.Errors)
                {
                    Console.WriteLine(err.ErrorText);
                }
            }
            else
            {
                // 通过反射,调用HelloWorld的实例
                Assembly objAssembly = cr.CompiledAssembly;
                object objHelloWorld = objAssembly.CreateInstance("DynamicCodeGenerate.HelloWorld");
                MethodInfo objMI = objHelloWorld.GetType().GetMethod("OutPut");

                Console.WriteLine(objMI.Invoke(objHelloWorld, null));
            }

            Console.ReadLine();
        }

        static string GenerateCode(string abc)
          {
              StringBuilder sb = new StringBuilder();
              sb.Append("using System;");
              sb.Append(Environment.NewLine);
              sb.Append("namespace DynamicCodeGenerate");
              sb.Append(Environment.NewLine);
              sb.Append("{");
              sb.Append(Environment.NewLine);
              sb.Append("      public class HelloWorld");
              sb.Append(Environment.NewLine);
              sb.Append("      {");
              sb.Append(Environment.NewLine);
              sb.Append("          public string OutPut()");
              sb.Append(Environment.NewLine);
              sb.Append("          {");
              sb.Append(Environment.NewLine);
              sb.Append(string.Format("               return {0}+\"\";",abc));
              sb.Append(Environment.NewLine);
              sb.Append("          }");
              sb.Append(Environment.NewLine);
              sb.Append("      }");
              sb.Append(Environment.NewLine);
              sb.Append("}");

            string code = sb.ToString();
              Console.WriteLine(code);
              Console.WriteLine();

            return code;
          }
    }
}


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85