Tagged Questions
8
votes
2answers
1k 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 ...
2
votes
2answers
208 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
...