I'm wondering if there's a shortcut so that if I have an Complex object, I can do
var myObject = new SomeObject() {
then type a shortcut so I get this:
var myObject = new SomeObject()
{
Name = "",
Age = 0,
Height = 0,
etc.
}
As it would speed up my development time massively. I do a lot of stuff with SOAP and some of the objects have 20-30 properties in.
Intellisense is great to bring them up one by one, but if you need to skip some then you start having problems.
I have Resharper, if that adds an option also.