I\'m refactoring some code.
Right now there are quite a few places with functions like this:
string error; if (a) { error = f1(a, long, parameter,
I would think something like the following would work better:
a ? f1(a, long, parameter, list) : f2(a, long, parameter, list);