Say I have a data model and it's got a bunch of properties. Is there a quick way to autocomplete the initialization like....:
var myobj = new MyObject
{
A = ...,
B = ...,
.
.
Z = ...
};
So I can fill in the blanks on the properties but don't have to go on typing A...B...C... and so on?