I know there are a few answers on the site on this and i apologize if this is in any way duplicate, but all of the ones I found does not do what I am trying to do.

I am trying to specify method info so I can get the name in a type safe way by not using strings. So I am trying to extract it with an expression.

Say I want to get the name of a method in this interface:

public interface IMyInteface
{
    void DoSomething(string param1, string param2);
}

Currently I can get the name using THIS method:

 MemberInfo GetMethodInfo<T>(Expression<Action<T>> expression)
 {
        return ((MethodCallExpression)expression.Body).Method;
 }

I can call the helper method as follows:

var methodInfo = GetMethodInfo<IMyInteface>(x => x.DoSomething(null, null));
Console.WriteLine(methodInfo.Name);

But I am looking for the version that I can get the method name without specifying the parameters (null, null)

like this:

var methodInfo = GetMethodInfo<IMyInteface>(x => x.DoSomething);

But all attempts fail to compile

Is there a way to do this?

link|improve this question

Do not have VS at the moment, but I think you should try accepting Delegate or Action<string, string> in non-generic alternative. In this case you should be able to pass a method group – Snowbear Nov 22 '11 at 10:39
If I change the input to Delegate it wont compile and the error is cannot convert method group to delegate. If i change it to Action<string, string> it seems to work but the expression is converted to a UnaryExpression and the method is null and I cant see where to get this from the UnaryExpression – Andre Nov 22 '11 at 11:01
affter converting.. have you tried var methodInfo = GetMethodInfo<IMyInteface>(DoSomething); instead of var methodInfo = GetMethodInfo<IMyInteface>(x => x.DoSomething);? Also, I still think specifying (default(string), default(string)) - is more readable, and you can support overloading methods in this case – Alexander Mavrinsky Nov 22 '11 at 11:22
I cant use GetMethodInfo(DoSomething) by specifying do something directly i need to have a reference to the instance, but there are no instance, thats why it must be an expression, IMyInterface is never actually called with the concrete instance but only to extract the metdatata. I dont know if i am making sense – Andre Nov 22 '11 at 11:50
feedback

4 Answers

up vote 4 down vote accepted
x => x.DoSomething

In order to make this compilable I see only two ways:

  1. Go non-generic way and specify it's parameter as Action<string, string>
  2. Specify Action<string, string> as your target delegate type by yourself: GetMethodInfo<IMyInteface>(x => new Action<string,string>(x.DoSomething))

if you are ok to go with second one, which allows you to omit arguments then you can write your GetMethodInfo method as follows:

    MemberInfo GetMethodInfo<T>(Expression<Func<T, Delegate>> expression)
    {
        var unaryExpression = (UnaryExpression) expression.Body;
        var methodCallExpression = (MethodCallExpression) unaryExpression.Operand;
        var methodInfoExpression = (ConstantExpression) methodCallExpression.Arguments.Last();
        var methodInfo = (MemberInfo) methodInfoExpression.Value;
        return methodInfo;
    }

It works for your interface, but probably some generalization will be required to make this working with any method, that's up to you.

link|improve this answer
I was hoping for something a little less verbose, but nevertheless, this works just fine, thanks. – Andre Nov 22 '11 at 14:45
feedback

The problem with this is that x.DoSomething represents a method group. And you have to somehow explicitly specify what delegate type do you want to convert that method group into, so that the correct member of the group can be selected. And it doesn't matter if that group contains only one member.

The compiler could infer that you mean that one, but it doesn't do that. (I think it's this way so that your code won't break if you add another overload of that method.)

Snowbear's answer contains good advice on possible solutions.

link|improve this answer
feedback

If your application would allow a dependency on Moq (or a similar library), you could do something like this:

class Program
{
    static void Main(string[] args)
    {
        var methodInfo = GetMethodInfo<IMyInteface>(x => new Action<string,string>(x.DoSomething));
        Console.WriteLine(methodInfo.Name);
    }

    static MemberInfo GetMethodInfo<T>(Func<T, Delegate> func) where T : class
    {
        // http://code.google.com/p/moq/
        var moq = new Mock<T>();
        var del = func.Invoke(moq.Object);
        return del.Method;
    }
}

public interface IMyInteface
{
    void DoSomething(string param1, string param2);
}
link|improve this answer
feedback

This is a new answer to an old question, but responds to the "verbose" complaint of the accepted answer. It requires more code, but the result is a syntax like:

MemberInfo info = GetActionInfo<IMyInterface, string, string>(x => x.DoSomething);

or, for methods with a return value

MemberInfo info = GetFuncInfo<IMyInterface, object, string, string>(x => x.DoSomethingWithReturn);  

where

object DoSomethingWithReturn(string param1, string param2);

Just like the framework provides Action<> and Func<> delegates up to 16 parameters, you have to have GetActionInfo and GetFuncInfo methods that accept up to 16 parameters (or more, although I'd think refactoring is wise if you have methods with 16 parameters). A lot more code, but an improvement in the syntax.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.