Quick points for those who can know the answer - is there a fragment or tool that can quickly generate template code for assigning all open fields and / or properties of an object?
Example:
public class SomeBloatedClass { public string SomeField1 { get; set; } public int SomeField2 { get; set; }
Third-party tools are great as long as they integrate into Visual Studio.
Edit: I just want the tool to create empty assignment statements, which I could quickly edit manually using the appropriate values. Ideally, the solution will use the built-in snippet mechanism to move from the statement to the statement via the TAB key - I could not clearly imagine this using the StackOverflow editor, but if you used fragments, you should know what I mean).
source share