在运行时从代码文件执行c#代码

时间:2010-11-15 05:32:12

标签: c# .net runtime csharpcodeprovider

我有一个包含按钮的 WPF C#应用程序。

按钮单击的代码写在单独的文本文件中,该文件将放在应用程序运行时目录中。

我希望 执行 点击按钮时放置在文本文件中的代码。

知道怎么做吗?

5 个答案:

答案 0 :(得分:85)

用于执行在fly类方法上编译的代码示例:

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Net;
using Microsoft.CSharp;
using System.CodeDom.Compiler;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            string source =
            @"
namespace Foo
{
    public class Bar
    {
        public void SayHello()
        {
            System.Console.WriteLine(""Hello World"");
        }
    }
}
            ";

             Dictionary<string, string> providerOptions = new Dictionary<string, string>
                {
                    {"CompilerVersion", "v3.5"}
                };
            CSharpCodeProvider provider = new CSharpCodeProvider(providerOptions);

            CompilerParameters compilerParams = new CompilerParameters
                {GenerateInMemory = true,
                 GenerateExecutable = false};

            CompilerResults results = provider.CompileAssemblyFromSource(compilerParams, source);

            if (results.Errors.Count != 0)
                throw new Exception("Mission failed!");

            object o = results.CompiledAssembly.CreateInstance("Foo.Bar");
            MethodInfo mi = o.GetType().GetMethod("SayHello");
            mi.Invoke(o, null);
        }
    }
}

答案 1 :(得分:35)

您可以使用Microsoft.CSharp.CSharpCodeProvider即时编译代码。请特别注意CompileAssemblyFromFile

答案 2 :(得分:21)

我建议您查看Microsoft Roslyn,特别是ScriptEngine类。 以下是一些很好的例子:

  1. Introduction to the Roslyn Scripting API
  2. Using Roslyn ScriptEngine for a ValueConverter to process user input
  3. 用法示例:

    var session = Session.Create();
    var engine = new ScriptEngine();
    engine.Execute("using System;", session);
    engine.Execute("double Sin(double d) { return Math.Sin(d); }", session);
    engine.Execute("MessageBox.Show(Sin(1.0));", session);
    

答案 3 :(得分:3)

看起来有人为此创建了一个名为C# Eval的库。

编辑:更新指向Archive.org的链接,因为好像original site已经死了。

答案 4 :(得分:2)

您需要的是CSharpCodeProvider Class

有几个样本可以了解它是如何工作的。

1 http://www.codeproject.com/Articles/12499/Run-Time-Code-Generation-I-Compile-C-Code-using-Mi

这个例子的重点是,你可以在事实上做所有事情。

myCompilerParameters.GenerateExecutable = false;
myCompilerParameters.GenerateInMemory = false;

2 http://www.codeproject.com/Articles/10324/Compiling-code-during-runtime

这个例子很好,因为你可以创建dll文件,因此它可以在其他应用程序之间共享。

基本上,您可以搜索http://www.codeproject.com/search.aspx?q=csharpcodeprovider&x=0&y=0&sbo=kw&pgnum=6并获得更多有用的链接。