up vote 52 down vote favorite
6
share [g+] share [fb]

I have often encountered an error such as "cannot convert from 'method group' to 'string'" in cases like :

var list = new List<string>();
// ... snip
list.Add(someObject.ToString);

of course there was a typo in the last line because I forgot the round paranthesis after "ToString". The correct form would be :

var list = new List<string>();
// ... snip
list.Add(someObject.ToString()); // <- notice the paranthesis

However I came to wonder what is a method group. Google isn't much of a help and MSDN neither.

link|improve this question

14  
Section 7.1 of the C# 3.0 specification defines "method group". – Eric Lippert May 20 '09 at 16:47
feedback

4 Answers

up vote 61 down vote accepted

A method group is the name for a set of methods (that might be just one) - i.e. in theory the ToString method may have multiple overloads (plus any extension methods): ToString(), ToString(string format), etc - hence ToString by itself is a "method group".

It can usually convert a method group to a (typed) delegate by using overload resolution - but not to a string etc; it doesn't make sense.

Once you add paranthesis, again; overload resolution kicks in and you have unambiguously identified a method call.

link|improve this answer
1  
What would be typical uses of a method group? Since (so I understand) it has the same name the parameter count and/or types will differ. So you cannot invoke more than one method from the method group using the group. – Andrei Rinea May 20 '09 at 10:55
6  
It is purely a compiler term for "I know what the method name is, but I don't know the signature"; it has no existence at runtime. AFAIK, the only use of a method-group by itself (no brackets etc) is during delegate construction. – Marc Gravell May 20 '09 at 11:00
5  
ECMA 334v4 §14.1: A method group can be used in an invocation-expression (§14.5.5), used in a delegate-creation-expression (§14.5.10.3), or implicitly converted to a compatible delegate type. In any other context, an expression classified as a method group causes a compile-time error. – Marc Gravell May 20 '09 at 11:02
feedback

Also, if you are using LINQ, you can apparently do something like myList.Select(methodGroup).

So, for example, I have:

private string DoSomethingToMyString(string input)
{
    // blah
}

Instead of explicitly stating the variable to be used like this:

public list<string> GetStringStuff()
{
    return something.getStringsFromSomewhere.Select(str => DoSomethingToMyString(str));
}

I can just omit the name of the var:

public list<string> GetStringStuff()
{
    return something.getStringsFromSomewhere.Select(DoSomethingToMyString);
}
link|improve this answer
11  
A ReSharper recommendation is what led me to search for method group. This is what ReSharper ended up doing to one of my linq expressions. – a_hardin Nov 11 '10 at 13:59
1  
@a_hardin: ReSharper FTW! I learned a lot about LINQ thanks to Resharper. – Jason Down Jan 6 at 4:35
feedback

The first result in your MSDN search said

The method group identifies the one method to invoke or the set of overloaded methods from which to choose a specific method to invoke

my understanding is that basically because when you just write someInteger.ToString, it may refer to

Int32.ToString(IFormatProvider)

or it can refer to

Int32.ToString()

so it is called a method group

link|improve this answer
feedback

The ToString function has many overloads - the method group would be the group consisting of all the different overloads for that function.

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.