百行代码轻松实现C#中的Eval函数

Posted Jeff Xiong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百行代码轻松实现C#中的Eval函数相关的知识,希望对你有一定的参考价值。

    使用过javascript中的Eval函数的兄弟肯定对这个函数情有独钟,该函数能动态的执行我们传递进去的表达式。使用Eval函数咱们能轻松的制作可编程的程序,那C#是否也有这样的函数呢?答案是肯定的,不过C#并没有实现现成的方法供我们使用。但是这并不能阻止咱们这帮爱偷懒的程序员们。

    现在我们就在C#中实现一个Eval函数吧,具体操作如下:

图1

图2

图3

图4

 

程序代码

using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;

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

namespace CSHARP_EVAL_FUNCTION

    public class EVAL
    
        private static string prefix = @"using System;
                                  public static class DynamicClass
                                  
                                       public static void Bomb()
                                       ";

        public static string postfix = @"";

        public string content  get; set; 

        public void Eval()
        
            if (content == "")
            
                Console.WriteLine("必须为Content属性赋予值");
                return;
            
            string code = prefix + content + postfix;
            CompilerResults result = null;

            using (var provider = new CSharpCodeProvider())
            
                var options = new CompilerParameters();
                options.GenerateInMemory = true;

                result = provider.CompileAssemblyFromSource(options, code);

                if (result.Errors.HasErrors)//编译有错误
                
                    var errorMsg = new StringBuilder();
                    foreach (CompilerError error in result.Errors)
                    
                        errorMsg.AppendFormat("Line:0,Column:1,Content:2", error.Line, error.Column, error.ErrorText);
                    
                    Console.WriteLine(errorMsg.ToString());
                
                else//运行类 DynamicClass 中的HelloWorld方法
                

                    Type dynamicClass = result.CompiledAssembly.GetType("DynamicClass");
                    dynamicClass.InvokeMember("Bomb", BindingFlags.InvokeMethod | BindingFlags.Static | BindingFlags.Public, null, null, null);
                
            

        
    


 

 

源码下载

 

 

 

 

以上是关于百行代码轻松实现C#中的Eval函数的主要内容,如果未能解决你的问题,请参考以下文章

还在手动埋点么?out 了!不到百行代码实现自动埋点

从 C# 驱动程序执行 MongoDB Eval 函数(MongoDB 版本 2.4)

字符串中的字典取出value值(eval 使用及介绍)

百行代码实现VLC简易视频播放器VLC环境配置过程+可执行源码注释完整

百行代码变十行,苹果SwiftUI可视化编程让开发者惊呼完美

JavaScript中的eval函数