Clean Code Tip: Keep the parameters in a consistent order
If you have a set of related functions, use always a coherent order of parameters.
Take this bad example:
IEnumerable<Section> GetSections(Context context);
void AddSectionToContext(Context context, Section newSection);
void AddSectionsToContext(IE...
code4it.hashnode.dev1 min read