Sometimes I see methods in the .net structure with the prefix "Try", for example. int.TryParse (..).
I assume this means that the method is the same as int.parse, but wrapped in a try catch?
Does this mean that if I write methods that try to catch them (for example, logging, which I never want to raise an exception), they should also have the prefix "try"?
source
share