The obvious solution (to me) is the following:
if (widgets.Count == 0)
{
//Handle empty collection
}
else
{
// Handle non-empty collection
foreach (widget in widgets)
{
// Process widget
}
}
This seems indentatious. I am tempted to remove a level of indentation with "else foreach", but I can hear a low (but building) shriek in my head that starts immediately when I have that thought:
if (widgets.Count == 0)
{
//Handle empty collection
}
else foreach (widget in widgets)
{
// Process widget
}
Any other ideas or suggestions?
I have been tempted to use the pattern you're speaking of before in cases like this:
The problem is the Visual Studio auto-indentation will constantly want to change it and indent your code after your
else
statement.My advice would be use the first example in your question. Eliminating your
else
block does little for readability/maintainability.