I have class and there are a lot of properties in it. Is there a functionality of visual studio to reach all the properties easily. I do not want to use a constructor.
This is the class:
Assignment a = new Assignment()
{
}
And this is what I want to do automaticly so i can fill the values:
Assignment a = new Assignment()
{
prop1 = ,
prop2 = ,
prop3 = ,
prop4 = ,
prop5 =
//...
};