A programming anti-pattern is a commonly used solution to a specific programming problem, often claiming being an actual design pattern.
So something like this public void MyMethod(object parameter) //.... BuildSomething(parameter); BuildLayers(parameter); BuildOtherStuff(parameter); } public void BuildSomething(object parameter) { //... …
c# anti-patterns