Tagged Questions

52
votes
4answers
17k views

What is a method group in C#?

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 ...
22
votes
2answers
392 views

C# Language Design: method group inside `is` operator

I'm interesting in some design choices of C# language. There is a rule in C# spec that allows to use method groups as the expressions of is operator: class Foo { static void Main() { if (Main is ...
13
votes
2answers
150 views

Using C# method group executes code

While updating my UI code (C# in a .NET 4.0 application), I ran into a strange crash due to a call to the UI being executed in the wrong thread. However, I was invoking that call on the main thread ...
10
votes
7answers
331 views

Are there any benefits to using a C# method group if available?

When dealing with something like a List<string> you can write the following: list.ForEach(x => Console.WriteLine(x)); or you can use a method group to do the same operation: ...
8
votes
2answers
987 views

C# method group strangeness

I discovered something very strange that I'm hoping to better understand. var all = new List<int[]>{ new int[]{1,2,3}, new int[]{4,5,6}, new ...
5
votes
2answers
89 views

What is this ReSharper snippet 'convert to method group' actually doing?

Code before the changes: List<ProductBrandModel> model = brands.Select(item => Mapper.Map<ProductBrand, ProductBrandModel>(item)).ToList(); Code after the improvement: ...
3
votes
2answers
62 views

Error Assigning Delegate Using ? : Syntax

I've created a delegate and two matching methods. private delegate bool CharComparer(char a, char b); // Case-sensitive char comparer private static bool CharCompare(char a, char b) { return (a ...
2
votes
3answers
229 views

Method Inference does not work with method group

Consider void Main() { var list = new[] {"1", "2", "3"}; list.Sum(GetValue); //error CS0121 list.Sum(s => GetValue(s)); //works ! } double GetValue(string s) { double val; ...
2
votes
2answers
394 views

Overloaded method-group argument confuses overload resolution?

The following call to the overloaded Enumerable.Select method: var itemOnlyOneTuples = "test".Select<char, Tuple<char>>(Tuple.Create); fails with an ambiguity error (namespaces removed ...
2
votes
2answers
197 views

Why does adding a return type prevent me from using method group syntax?

I'm trying to use a method group in a lambda expression, like this: public class Foo { public void Hello(string s) { } } void Test() { // this works as long as Hello has a void return type ...
0
votes
3answers
183 views

How to check for “method group” via “sender” object?

Imagine a method like this ( in Win Forms): //First method private void buttonStart_Click(object sender, EventArgs e) { //I call another method here this.GetData(sender, null) } ...
0
votes
7answers
618 views

“<” operator error

Why is the ( i < UniqueWords.Count ) expression valid in the for loop, but returns "CS0019 Operator '<' cannot be applied to operands of type 'int' and 'method group'" error when placed in my ...