December 11, 2001 07:11 PM

Error Handling in .NET Languages

Rating: (0)
SQL Server Magazine
InstantDoc ID #23612
For a long time, C and C++ developers deeply envied their Visual Basic (VB) colleagues for VB's On Error Goto and On Error Resume Next features. At a certain point, the notion of structured exception handling surfaced in C++ applications, but many people still considered this feature "not for everyone" and good for only elite programmers. Along the way, COM came out, but it only reinforced this concept.

COM...

...This article is for paid Professional Members only.

Already a Professional Member? Please log in now:

NOT A PROFESSIONAL MEMBER? YOU CHOOSE:

Professional Membership

Monthly

Annual

VIP Membership

Monthly

Annual

Add a Comment

One should never introduce a new term or idea without providing a complete code sample. Example: public int function MyMethod(Object o) {
if (o == null)
throw(new ArgumentNullException());
}.
How is this error captured and displayed?

Lemuel Kinney 4/23/2004 10:48:36 AM


You must log on before posting a comment.

Are you a new visitor? Register Here