I have a class with 200 properties. I create an instance of this class and I have to give value to all props. Is there any shortcut in Visual Studio 2017 what writes me all props with a default value like null or 0? Something like this:
var myClass = new Class1()
{
prop1 = "";
prop2 = null;
...
prop200 = 0;
}