0

是否可以通过在运行时编译的代码片段来提供接口的实现?

以下不起作用(安全类型转换返回“null”):

一个完整的控制台应用程序:

using System;
using System.Collections.Generic;

namespace Foo
{
    using System.CodeDom.Compiler;

    using Microsoft.CSharp;

    class Program
    {
        static void Main(string[] args)
        {
            // code snippet to compile:   
            string source =@"namespace Foo {

    public class Test:ITest
    {
        public void Write()
        {
            System.Console.WriteLine(""Hello World"");
        }
    }

    public interface ITest
    {

        void Write();
    }
}
   ";//end snippet

      // the "real" code:

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

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

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

            if (results.Errors.Count == 0)
            {

            }

            ITest test = results.CompiledAssembly.CreateInstance("Foo.Test") as Foo.ITest;

            test.Write(); // will crash here because it is "null"

            Console.ReadLine();
        }
    }

    public interface ITest
    {

        void Write();
    }
}

演员“作为 ITest”没有成功,即。返回空值。似乎控制台程序中定义的类型“ITest”与编译代码片段中定义的类型“ITest”不兼容。

我知道我可以使用反射来调用方法,但是通过接口访问它们当然更舒服。

4

1 回答 1

5

您有两个不同ITest的界面,它们恰好看起来相同。
它们不是同一类型。

相反,您需要添加对在 CodeDOM 编译器中定义原始接口的程序集的引用。

于 2013-08-06T15:02:08.560 回答