Intellisense-Descritpion-Attributes

  • Thread starter Thread starter Michael Maercker
  • Start date Start date
M

Michael Maercker

Hi!

I know there's some way of using .Net's <Attributes> in my own code to set
method descriptions etc. that will be shown in Intellisense while
programming - or at least after compiling into a dll for example. I've
searched the net, but all I keep finding that somehow comes close is showing
property descriptions in the designer-window. And I guess that what I need
now goes something like that, but I can't really put the pieces together...

Can anyone help me along?

Thanks for at least reading so far,
Mike
 
Michael Maercker said:
I know there's some way of using .Net's <Attributes> in my own code to set
method descriptions etc. that will be shown in Intellisense while
programming - or at least after compiling into a dll for example. I've
searched the net, but all I keep finding that somehow comes close is showing
property descriptions in the designer-window. And I guess that what I need
now goes something like that, but I can't really put the pieces together...

Can anyone help me along?

You don't need attributes, you need XML documentation. You need to set
your project to build XML documentation in the same location as the
..dll file, and with the same name as the .dll except with .xml as the
extension instead.
 
Back
Top