#300 – Use XML Documentation to Inform Intellisense
April 13, 2011 1 Comment
Intellisense in Visual Studio 2010 is a very powerful tool. Among other things, it gives someone coding against a class additional information about a particular method and its parameters.
In the example below, we’ve just typed the opening parenthesis after the name of the Bark method. An Intellisense window pops up and tells us about the method and its parameter.
To support Intellisense, you need to add XML documentation to your method. To start with, enter “///” on a blank line immediately preceding the first line of your method. Visual Studio will create an empty template for you to fill in.
/// <summary> /// /// </summary> /// <param name="numTimes"></param> public void Bark(int numTimes)
To finish the documentation, just enter a short description of the method within the <summary> tag and a description of each parameter within the <param> tags.
Pingback: #913 – How to Document that a Method Can Throw an Exception | 2,000 Things You Should Know About C#