|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How to display Summary in object browserHi 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 Show quote "hulinning" wrote: > 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 Thanks for your comments.
Is that possible to do this in VB.NET? Show quote "sebastieng" wrote: > 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 > > "hulinning" wrote: > > > 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 regarding this article :
http://msdn2.microsoft.com/en-us/library/ms172653(VS.80).aspx it seems to be available in VS2k5. About VS 2k3, I was not able to find anything about that.... sorry Bye Sébastien Show quote "hulinning" wrote: > Thanks for your comments. > > Is that possible to do this in VB.NET? > > > "sebastieng" wrote: > > > 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 > > > > "hulinning" wrote: > > > > > 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 |
|||||||||||||||||||||||