Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# XML Exception tags description missing?

I never seem to see the 'description' provided in Exception documentation tags. An example is below:

No XML Description For Exceptions

Notice that I see the thrown exception type, but not the description as to when it is thrown. Where can I see that description?

Thanks in advance.

like image 397
Xenoprimate Avatar asked Dec 08 '25 06:12

Xenoprimate


1 Answers

on the class definition press F12 to display related assembly or code section. In the code documentation there is information about which exceptions are thrown in which cases.

like image 157
daryal Avatar answered Dec 09 '25 18:12

daryal