Xenoprimate
Xenoprimate

Reputation: 7963

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.

Upvotes: 3

Views: 666

Answers (1)

daryal
daryal

Reputation: 14929

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.

Upvotes: 1

Related Questions