私はパイプラインロジックを書いています。アイデアは、オン フライでオブジェクトのインスタンスを作成し、それぞれの場合にメソッド Run メソッドを実行することです。リフレクション Activator.CreateInstance を使って昔ながらの方法を簡単に実行できますが、この場合はパフォーマンスが重要です。
多くのコードサンプルとチュートリアルを見て、ラムダ式を正しく理解できたと思います。呼び出し部分だけを把握できます。前もって感謝します。
namespace Pipelines
{
using System;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
public interface IProcessor
{
string Name { get; set; }
}
public interface IAspNetMembershipId : IProcessor
{
Guid? Id { get; set; }
}
public class ProcessorOne
{
public void Run(IProcessor args)
{
/* Do Something */
}
}
public class ProcessorTwo
{
public void Run(IAspNetMembershipId args)
{
/* Do Something */
}
}
public class Program
{
static void Main(string[] args)
{
var arguments = new AspNetMembershipId() { Name = "jim" };
/* Pipeline1 Begin */
Type type = typeof(ProcessorOne);
NewExpression newExp = Expression.New(type);
var p1 = Expression.Parameter(newExp.Type, "ProcessorOne");
var p2 = Expression.Parameter(typeof(IProcessor), "args");
MethodInfo methodInfo = (from method in newExp.Type.GetMethods() where method.Name.StartsWith("Run") select method).First();
var invokeExpression = Expression.Call(p1, methodInfo, p2);
Delegate func = Expression.Lambda(invokeExpression, p1, p2).Compile();
/* Throws an exception. This not correct! */
func.DynamicInvoke(newExp, arguments);
/* or */
func.DynamicInvoke(arguments);
/* Pipeline2 Begin */
}
}
}