J
Jon Skeet [C# MVP]
fallenidol said:throwing and catching exceptions is expensive and so should be avoided
Throwing exceptions isn't *that* expensive - not when it should only
happen on error (i.e. rarely) and that error should usually go high
enough up to stop the code from retrying over and over again.
See http://www.pobox.com/~skeet/csharp/exceptions.html for the myth of
the expensive exception.