I had a method like this that its consumers are calling it:
static public void DisplayOrderComments(param1, param2, param3, param4)
Now I added an overload for it like this:
static public void DisplayOrderComments(param1, param2, param3, param4, param5)
{
DisplayOrderComments(param1, param2, param3, param4);
param5.Foo();
}
Is it a bad practice? Are there better ways of doing it?
