Tagged Questions

0
votes
7answers
234 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 …
0
votes
1answer
215 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 …
5
votes
3answers
879 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 …