問題は、 aMethodCallExpression
が実際にメソッドでなければならないことです。検討:
public static void Main()
{
Express(str => str.Length);
Console.ReadLine();
}
static void Express(Expression<Func<String, Int32>> expression)
{
// Outputs: PropertyExpression (Which is a form of member expression)
Console.WriteLine(expression.Body.GetType());
Console.ReadLine();
}
式はコンパイル時に決定されます。つまり、プロパティをstr => str.Length
呼び出していると言うと、コンパイラはこれを に解決します。str
MemberExpression
代わりに、ラムダを次のように変更すると:
Express(str => str.Count());
次に、コンパイラは私が呼び出しCount()
ていることを理解し、実際にはメソッドであるためstr
、 ... に解決されます。MethodCallExpression
String
ただし、これは、 aを an に「変換」できるのと同様に、式をある型から別の型に実際に「変換」できないことを意味することに注意してくださいInt32
。解析はできますが、それは実際には会話ではないことがわかると思います...
...とはいえ、MethodCallExpression
何もないところから a を構築できるため、場合によっては役立ちます。たとえば、ラムダを構築しましょう。
(str, startsWith) => str.StartsWith(startsWith)
(1) まず、2 つのパラメーターを作成することから始める必要があります。(str, startsWith) => ...
// The first parameter is type "String", and well call it "str"
// The second parameter also type "String", and well call it "startsWith"
ParameterExpression str = Expression.Parameter(typeof(String), "str");
ParameterExpression startsWith = Expression.Parameter(typeof(String), "startsWith");
(2) 次に、右側で以下を構築する必要がありますstr.StartsWith(startsWith)
。まず、リフレクションを使用して、次のように type の単一の入力を受け取る のStartsWith(...)
メソッドにバインドする必要があります。String
String
// Get the method metadata for "StartsWith" -- the version that takes a single "String" input.
MethodInfo startsWithMethod = typeof(String).GetMethod("StartsWith", new [] { typeof(String) });
(3) binding-metadata を取得したMethodCallExpression
ので、次のように a を使用して実際にメソッドを呼び出すことができます。
//This is the same as (...) => str.StartsWith(startsWith);
// That is: Call the method pointed to by "startsWithMethod" bound above. Make sure to call it
// on 'str', and then use 'startsWith' (defined above as well) as the input.
MethodCallExpression callStartsWith = Expression.Call(str, startsWithMethod, new Expression[] { startsWith });
(4) これで、左辺(str, startsWith)
/ と右辺ができstr.StartsWith(startsWith)
ました。次に、それらを 1 つのラムダに結合する必要があります。最終的なコード:
// The first parameter is type "String", and well call it "str"
// The second parameter also type "String", and well call it "startsWith"
ParameterExpression str = Expression.Parameter(typeof(String), "str");
ParameterExpression startsWith = Expression.Parameter(typeof(String), "startsWith");
// Get the method metadata for "StartsWith" -- the version that takes a single "String" input.
MethodInfo startsWithMethod = typeof(String).GetMethod("StartsWith", new[] { typeof(String) });
// This is the same as (...) => str.StartsWith(startsWith);
// That is: Call the method pointed to by "startsWithMethod" bound above. Make sure to call it
// on 'str', and then use 'startsWith' (defined above as well) as the input.
MethodCallExpression callStartsWith = Expression.Call(str, startsWithMethod, new Expression[] { startsWith });
// This means, convert the "callStartsWith" lambda-expression (with two Parameters: 'str' and 'startsWith', into an expression
// of type Expression<Func<String, String, Boolean>
Expression<Func<String, String, Boolean>> finalExpression =
Expression.Lambda<Func<String, String, Boolean>>(callStartsWith, new ParameterExpression[] { str, startsWith });
// Now let's compile it for extra speed!
Func<String, String, Boolean> compiledExpression = finalExpression.Compile();
// Let's try it out on "The quick brown fox" (str) and "The quick" (startsWith)
Console.WriteLine(compiledExpression("The quick brown fox", "The quick")); // Outputs: "True"
Console.WriteLine(compiledExpression("The quick brown fox", "A quick")); // Outputs: "False"
更新
さて、おそらく次のようなものがうまくいくかもしれません:
class Program
{
public void DoAction()
{
Console.WriteLine("actioned");
}
public delegate void ActionDoer();
public void Do()
{
Console.ReadLine();
}
public static void Express(Expression<Func<Program, ActionDoer>> expression)
{
Program program = new Program();
Func<Program, ActionDoer> function = expression.Compile();
function(program).Invoke();
}
[STAThread]
public static void Main()
{
Express(program => program.DoAction);
Console.ReadLine();
}
}
更新:偶然何かに出くわしました。次のコードを検討してください。
public static String SetPropertyChanged<T>(Expression<Func<T, Object>> expression)
{
UnaryExpression convertExpression = (UnaryExpression)expression.Body;
MemberExpression memberExpression = (MemberExpression)convertExpression.Operand;
return memberExpression.Member.Name;
...
}
入力は、WPF の単純なラムダです。
base.SetPropertyChanged(x => x.Visibility);
に投影しているObject
ので、ビジュアルスタジオがこれを に変換することに気付きましたUnaryExpression
。これは、あなたが遭遇しているのと同じ問題だと思います。ブレークポイントを置いて実際の式を調べると (私の場合)、 と表示されますx => Convert(x.Visibility)
。問題はConvert
(事実上、現在不明な型への単なるキャストです) です。あなたがしなければならないのは、それを削除することだけです(上記のコードでOperand
メンバーを使用して行っているように、すべて設定されているはずですMethodCallExpression
.