What error handling should be used in VB.NET
Posted
by Craig Johnston
on Stack Overflow
See other posts from Stack Overflow
or by Craig Johnston
Published on 2010-06-15T08:00:31Z
Indexed on
2010/06/15
8:02 UTC
Read the original article
Hit count: 326
vb.net
|error-handling
What error handling should be used in VB.NET?
Should you use the "On Error Goto ErrorHandler ... Exit Sub ErrHandler ... End Sub" pattern or should you use the "try { ... } catch { ... } finally { ...}" pattern?
© Stack Overflow or respective owner