Tagged Questions
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:
...