是否可以通过在运行时编译的代码片段来提供接口的实现?
以下不起作用(安全类型转换返回“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();
}
}
演员“as ITest”没有成功,即。返回null。 似乎控制台程序中定义的“ITest”类型与编译的代码段中定义的“ITest”类型不兼容。
我知道我可以使用Reflection来调用方法,但当然通过接口访问它们会更舒服。
答案 0 :(得分:5)
您有两个不同的ITest
接口,看起来相同
它们的类型不同。
相反,您需要添加对在CodeDOM编译器中定义原始接口的程序集的引用。