Do you prefer to write methods/functions using a single return statement or do you prefer several return statements?
C# pseudo code example for one return:
public string Foo(string message)
{
string result = string.Empty;
if (message.Equals("Ping?"))
{
result = "Pong!";
}
else
{
result = "Bar.";
}
return result;
}
Same example with multiple return statements:
public string Foo(string message)
{
if (message.Equals("Ping?"))
{
return "Pong!";
}
else
{
return "Bar.";
}
}
If you prefer one over the other, why so?
