Top "Anti-patterns" questions

A programming anti-pattern is a commonly used solution to a specific programming problem, often claiming being an actual design pattern.

Change value of parameter inside method, is this an anti-pattern?

So something like this public void MyMethod(object parameter) //.... BuildSomething(parameter); BuildLayers(parameter); BuildOtherStuff(parameter); } public void BuildSomething(object parameter) { //... …

c# anti-patterns