I have created a class and i want to display information about that class and its properties in a tooltip when the intellisense dropdown appears when we are referencing its members.How can we do this without using any tool in c#
Tooltip
Collapse
X
-
Tags: None
-
Originally posted by rahuldhammyI have created a class and i want to display information about that class and its properties in a tooltip when the intellisense dropdown appears when we are referencing its members.How can we do this without using any tool in c# -
Hello nmsreddi
In visual studio 2005 write this above yoyur class
/// <summary>
/// The class is used to handle the dataset particularly the globaldatset
/// </summary>
The tool tip would be displayed whenever u access the class through the intellisense.Comment
Comment