I have a class with more than 8 properties, and I often want to instantiate it in some method, but it is super tedious to have to write the properties one by one to assign t
If you are initialising like this:
var example = new Example() { ... };
Then you can use Ctrl-Space and it will keep offering you properties left for auto complete that you have yet to set.