When I use any .NET methods, there is a little hint (IntelliSense) which explains the methods and their parameters.
How do I achieve the same behaviour for my own methods?
Is there a Visual Studio feature which allows me to add these in?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
the “feature” is called XML comments. Just type /// right before your methods and VS will generate some xml tags. These will be used to show the tooltip as well as parameter info aso.
Screenshot of my VS2010 when calling method add. As you can see, xml comments are shown.
