Skip to content
Archive of posts tagged Resharper

Getting to know Resharper: Generate a constructor

Resharper, the terrific Visual Studio productivity plugin, reduces adding a constructor for class, with as many arguments as you need, to just a few mouse clicks.Here’s how to use this Resharper feature.
Figure 1a. Class without a constructor.

1public class Artist
2{
3 public int ArtistId { get; set; }
[...]