show/hide this revision's text 2 added 70 characters in body

Which one is a better practice in programming?

I am not talking about complete exclusivity. It's more for things like:

list.Find

list<T>.Find, where you get default(T) or your value, instead of ValueNotFound exception (example).

or

list.IndexOf

list<T>.IndexOf, where you get -1 or the correct index.

show/hide this revision's text 1

Exceptions vs Special return values

Which one is a better practice in programming?

I am not talking about complete exclusivity. It's more for things like:

list.Find, where you get default(T) or your value, instead of ValueNotFound exception (example).

or

list.IndexOf, where you get -1 or the correct index.