<example> </example> XML comment tag: how to see it?
I use Microsoft Visual Studio 2012. When I add code examples to the XML comments of C # classes / methods, I wonder: how will a user who references my assemblies see this code example?
I tried referencing my own assembly, and the only way I found was to look at the assembly.xml file. Can I install Visual Studio or anything else to see these code examples?
Here is what I added in the comments:
/// <summary>
/// This is my method example
/// </summary>
/// <example>
/// <code>
/// // Here is my code example. Call my method like this:
/// const int a = 10;
/// MethodExample(a);
/// </code>
/// </example>
public static void MethodExample(int parameter)
{
}
Here is what I get in intellisense:

Here is what I get in the object browser:

Here is what I get in assembly.xml:

What I want to get: see code examples in the object browser and intellisense.
+4
1
IntelliSense XML . , ChildCompletionList, : c, code, example, list, listheader, para, paramref, . .
/// <summary>
/// MethodExample the function that does it all...
/// <example>
/// <code>
/// <para/>// Here is my code example. Call my method like this:
/// <para/>const int a = 10;
/// <para/>MethodExample(a);
/// </code>
/// </example>
/// </summary>
+2