How to display Summary in object browser

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,
I would like to dipslay additional information to my classes in my library
like MS object in the object browser.
Is there a way to do this?

Thanks a lot
 
Hi,

I suppose you are searching for that:

namespace UserInactivityMonitoring
{
/// <summary>
/// Class for monitoring user inactivity without plattform
/// invokes by analyzing windows messages
/// </summary>

..........
}

Here is another example:
/// <summary>
/// Processes windows messages to detect user activity
/// </summary>
/// <param name="m">
/// <see cref="Message"/> object with the current message
/// </param>
/// <returns>
/// Always returns false to allow further processing of all messages
/// </returns>

You commentaries will automatically be displayed in class explorer.
You might search for summary in help's index.

bye
 
Back
Top