I heard again recently that "A method should have only one return statement" and of "The single-return law", that more than one return was a poor coding practice. I disagree. public int IsThisCodeSoBad(int param) { if (param == 0) return 0; foreach(foo
Read More...