1

ラムダ デリゲートを含む式を使用して、呼び出し元のメソッドの名前を取得しようとしていますが、適切にフォーマットされていません。

これが私がこれまでに持っているものです: 質問は..ラムダと通常のメソッドの両方で foo.Method.Name に似たものをどのように取得するのですか?

これまでのところ、式の有無にかかわらず試してみました..同じ結果が得られました。

< HandleAddedDevice >b__2d

    // **************************************************************************
    public delegate TResult TimerDelegateOut <T, out TResult>(out T foo);

    // **************************************************************************
    public static string GetName<T>(this Expression<T> expression) {
      var callExpression = expression.Body as MethodCallExpression;
      return callExpression != null ? callExpression.Method.Name : string.Empty;
    }

    // **************************************************************************
    public static Expression<TimerDelegateOut<T, TResult>> ToExpression<T, TResult>(this TimerDelegateOut<T, TResult> call) {
      var p1 = Expression.Parameter(typeof(T).MakeByRefType(), "value");
      MethodCallExpression methodCall = call.Target == null
          ? Expression.Call(call.Method, p1)
          : Expression.Call(Expression.Constant(call.Target), call.Method, p1);
      return Expression.Lambda<TimerDelegateOut<T, TResult>>(methodCall, p1);
    }

    // **************************************************************************
    public static Expression<Func<TResult>> ToExpression<TResult>(this Func<TResult> call) {
      MethodCallExpression methodCall = call.Target == null
        ? Expression.Call(call.Method)
        : Expression.Call(Expression.Constant(call.Target), call.Method);
      return Expression.Lambda<Func<TResult>>(methodCall);
    }

    // **************************************************************************
    public static TResult TimeFunction<T, TResult>(TimerDelegateOut<T, TResult> foo, out T bar) {
      try {
        var result = foo.ToExpression().Compile().Invoke(out bar);
        Console.WriteLine(foo.GetName());   // is OKAY
        return result;
      } catch (Exception) {
        bar = default(T);
        return default(TResult);
      }
    }

    // **************************************************************************
    public static TResult TimeFunction<TResult>(Func<TResult> foo) {
      try {
        var result = foo.ToExpression().Compile().Invoke();
        Console.WriteLine(foo.GetName());   // <-- prints "foo" ???  Not correct.
        return result;
      } catch (Exception) {
        bar = default(T);
        return default(TResult);
      }
    }

-------------
Result GetCamera_HWInfo(out Cam_HWInfo obj)
{
  obj = new Cam_HWInfo() { < fill container here > };
  return Result.cmrOk;
}


//------------
private void HandleAddedDevice() {
    ...

  Cam_HWInfo camHWInfo;
  Result result = Watchdog.TimeFunction(GetCamera_HWInfo, out camHWInfo);

    ...

  // Try this one.. I am also using.
  var connect = new Func<bool>(delegate {
    try {
      // ...
    } catch (Exception ex) {
      return false;
    }
    return true;
  });

  result = Watchdog.TimeFunction(connect);
}

//------------
// Assume OEP
static void Main(string[] args)
{
  HandleAddedDevice();
}

これは、私が期待する単純なケースで示すことができるテスト ドライバーです。サポートする必要がある 3 つのメソッドは次のとおりです。

  1. Func<T, TR>()
  2. Func<T, TR>(T foo)
  3. Func<T, TR>(out T foo)

例: ラムダ式は名前がありません。< No Name> のようなものが表示されます。

.Method.Name は正しいですが、呼び出しスコープ内の親のサブメソッドであるため、実際には次のようにスタックに登録されます。

< HandleAddedDevice >b__2d

ここで、それを式にしてから、 Expression.Compile() を使用して Action (または私の場合は Func) に変換する必要があるかもしれないことを読みましたか?

彼らは、ここにコンパイルされた式がなければ不可能かもしれないと言いました...おそらく、これは、私がやろうとしていることのどこで私のコードが少しずれているかを説明するのに役立つでしょう.

      class Program {
        public static class ReflectionUtility {
          public static string GetPropertyName<T>(Expression<Func<T>> expression) {
            MemberExpression body = (MemberExpression) expression.Body;
            return body.Member.Name;
          }
        }

        static void Main(string[] args) {
          Func<int, bool> lambda = i => i < 5;
          Func<int, bool> del = delegate(int i) { return i < 5; };

          // Create similar expression #1.
          Expression<Func<int, bool>> expr1 = i => i < 5;
          // Compile the expression tree into executable code.
          Func<int, bool> exprC1 = expr1.Compile();

          // Invoke the method and print the output.
          Console.WriteLine("lambda(4) = {0}   :  {1} ", lambda(4), lambda.Method.Name);
          Console.WriteLine("del   (4) = {0}   :  {1} ",    del(4), del.Method.Name);
          Console.WriteLine("expr1 (4) = {0}   :  {1} ", exprC1(4), exprC1.Method.Name);
          Console.WriteLine("          =           {0}", ReflectionUtility.GetPropertyName(() => lambda));
          Console.WriteLine("          =           {0}", ReflectionUtility.GetPropertyName(() => del));

          Console.Write("Press any key to continue...");
          Console.ReadKey();
        }

出力

lambda(4) = True   :  <Main>b__0
del   (4) = True   :  <Main>b__1
expr1 (4) = True   :  lambda_method
          =           lambda
          =           del
Press any key to continue...
4

2 に答える 2

3

メソッド名を抽出しようとしている方法を除いて、すべて問題ないようです。これを試して:

public static string GetName<T>(Expression<T> field)
{
    var callExpression = field.Body as MethodCallExpression;
    return callExpression != null ? callExpression.Method.Name : string.Empty;
}
于 2013-06-25T18:14:25.367 に答える