How to dynamic display a help?

  • Thread starter Thread starter maddog
  • Start date Start date
M

maddog

sorry, I don't know if is this the right group.

I build a class-lib in csharp,
and there comments are well xml formed.(///)

I have another project use the class-lib(a dll file)
I builed before. In this project, I wanna dynamic display the comments or
help(///) of my class-lib.
How to do this?

thank you!
 
Hi,

First, you should enable XML documentation file generation for the class
library. After you have done that, copy the XML file produced to the same
folder your project references the class library from. The IDE should
automatically discover the presence of the documentation and enable
IntelliSense.
 
Back
Top