Tagged Questions
55
votes
4answers
18k 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 ...
5
votes
2answers
103 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:
...