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.
