が、私はこのような何かをしたい:私はどのようにC#ので、実行時にインタフェースを実装するをググdotnetコアで実行時にインターフェイスを実装する最も良い方法は何ですか?
interface IMyInterface
{
void DoSomething();
string SaySomeWords(IEnumerable<string> words);
}
public class InterfaceImplFactory
{
public void RegisterInterface(Type type)
{
throw new NotImplementedException();
}
public InterfaceType GetInterfaceImpl<InterfaceType>()
{
throw new NotImplementedException();
}
}
class Program
{
static void Main(string[] args)
{
var factory = new InterfaceImplFactory();
factory.RegisterInterface(typeof(IMyInterface));
var impl = factory.GetInterfaceImpl<IMyInterface>();
impl.DoSomething();
impl.SaySomeWords(new List<string>() { "HelloWorld", "thanks"});
Console.ReadKey();
}
}
後、ほとんどの記事は古いです。私はラムダ、ダイナミックを使用することで、この問題を解決したいが、そこではないemit.Isこのような方法は、それを動作するように?
お返事のおかげで、私は(https://stackoverflow.com/questions/44993532/signature-of-the-body-and-declaration-in-a-method [こちら]よりdetailly別の質問を投稿-implementation-do-not-match) –