Is there a way, at design time, to initialize an object with all properties in Visual Studio 2010?
问题 Background I am writing code in VS 2010, .NET 4, C#. Also, in case it matters, I am using the latest version of ReSharper. Question Let's say I have this model: public class SomeObject { public string Red{ get; set; } public string Green{ get; set; } public string Blue{ get; set; } public string Yellow{ get; set; } public string Purple{ get; set; } public string Orange{ get; set; } public string Black{ get; set; } } Elsewhere in the code, I need to instantiate one of these objects, like so: