C# Error Code list.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can some one help me in locating the list of possible errors that could be
thrown out of C#?
 
Do you mean the list of exceptions? If so, there is no limit, since anyone
can derive a new class exception from System.Exception, but your try/catch
blocks can be adjusted to trap specific exceptions and/or the generic
System.Exception.

Why do you need that list?

--
Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com
 
Back
Top