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 ...
4
votes
1answer
2k views
Convert Method Group to Expression
I'm trying to figure out of if there is a simple syntax for converting a Method Group to an expression. It seems easy enough with lambdas, but it doesn't translate to methods:
Given
public delegate ...
2
votes
2answers
210 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
...