I am trying to add more specific error handling to my c# app, but I am finding it hard to track down what exceptions are thrown by classes and method. Is there a way through visual studio 2010 to find this info, or maybe an exception list?
|
|
Just find the class/method you are interested in on MSDN. For example, look at this page for the Dictionary.Remove Method. If the method throws an Exception (like this one), you can get the information for the Exceptions section of the page. |
|||
|
|
|
If you are talking about .Net framework methods, they are documented in the hover over help. You will see Exceptions: . Or you can see it in the object browswer Ctrl+W, J as well. Or press F1 over a function to go to MSDN help, where they are documented in detail. |
|||
|
|
If you're allowing the exceptions to be thrown, you should be able to see the exception details in the Event Viewer in Administrative Tools. |
|||
|
|
You can find specific uses of a particular exception, but there is no complete listing of all exceptions any method might throw. Consider the following method:
How would a code analyzer be able to determine which potential exceptions there were? If you're looking for information on a specific class, I'd check the documentation for it. |
|||
|
|