Return enum instead of bool from function for clarity ?
- by Moe Sisko
This is similar to :
http://stackoverflow.com/questions/2908876/net-bool-vs-enum-as-a-method-parameter
but concerns returning a bool from a function in some situations.
e.g.
Function which returns bool :
public bool Poll()
{
bool isFinished = false;
// do something, then determine if finished or not.
return…