Sometimes I\'m writing ugly if-else statements in C# 3.5; I\'m aware of some different approaches to simplifying that with table-driven development, class hierarchy, anonimous m
One thing I find myself doing at times is inverting the condition followed by return; several such tests in a row can help reduce nesting of if and else.