如何使用CodeDomProvider获取输出?

时间:2015-06-11 05:20:44

标签: c# .net

我可以使用CodeDomProvider编译C#代码。我编译并得到了编译结果。但我想得到下面代码片段的输出。我怎么得到这个?

e.g:

for(int i=0;i<=5;i++)
{
    System.Console.WriteLine(i);
}

上面的代码就是我正在使用的。我可以成功编译它但没有得到结果。我怎样才能得到结果?

1 个答案:

答案 0 :(得分:0)

是的,您可以编译并获得结果。 您需要将代码置于命名空间下并在函数

CompilerResults results = provider.CompileAssemblyFromSource(parameters, code);

Assembly assembly = results.CompiledAssembly;
Type program = assembly.GetType("Dynamic.Test");
MethodInfo main = program.GetMethod("Test");
main.Invoke(null, null);

来自https://msdn.microsoft.com/en-us/library/saf5ce06(v=vs.100).aspxhttp://www.codeproject.com/Tips/715891/Compiling-Csharp-Code-at-Runtime

的摘要

修改 -

在程序下创建并对读取结果进行一些修改。希望这会有所帮助。

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

namespace ConsoleApplication1
{
    internal class Program
    {
        static void Main(string[] args)
        {

            string code = @"
                            using System;
                            using System.Collections.Generic;

                            namespace Dynamic1
                            {
                                public class Test
                                {
                                    public static IEnumerable<int> Test1()
                                    {
                                       for(int i=0;i<=5;i++)
                                        {
                                            yield return i;
                                        }
                                    }
                                }
                            }
                        ";
            CSharpCodeProvider provider = new CSharpCodeProvider();
            CompilerParameters parameters =new CompilerParameters();
            CompilerResults results = provider.CompileAssemblyFromSource(parameters, code);
            Assembly assembly = results.CompiledAssembly;
            Type program = assembly.GetType("Dynamic1.Test");
            MethodInfo main = program.GetMethod("Test1");
            IEnumerable<int> outputResults = (IEnumerable<int>)main.Invoke(null, null);
            foreach (var result in outputResults)
            {
                Console.WriteLine(result);
            }
            Console.ReadLine();
        }
    }