Adding Tool Tip to Propery & Methods of Class [C# .Net]

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • IntellectYog
    New Member
    • Mar 2008
    • 3

    Adding Tool Tip to Propery & Methods of Class [C# .Net]

    Hello,

    Here I am to find How to add Tool Tip to the Peroperty and Methods written in my class , so that I can see then after calling it using Object of that class in source code. I need this in ASP.NET [C#]

    Is it possible ? and How ? I want to do this in manual coding and not to use any tool.


    Plz. suggest.


    Regards

    IntellectYog
  • nateraaaa
    Recognized Expert Contributor
    • May 2007
    • 664

    #2
    Just add ///<summary></summary> tag above your property or method.

    ///<summary>This is a property</summary>
    public Property1
    {
    get{}
    set{}
    }

    Nathan

    Comment

    Working...