Let's say I have a class
public class Widget
{
public int PropA { get; set; }
public int PropB { get; set; }
public int PropC { get; set; }
}
And I have a method
public Widget CreateWidget(int propA, int propB, int propC)
{
Widget w = new Widget();
w.PropA = propa;
w.PropB = propB;
w.PropC = propC;
return w;
}
Now, I know that, invariably, Widgets will get more properties over time. Can you recommend a pattern that will prevent me from having to go back in and modify the CreateWidget method every time the Widget object changes, or at least make it easier to maintain?