Possible Duplicate:
XML multiline comments in C# - what am I doing wrong?
Multiline XML Comments in VB.Net and Visual Studio Intellisense
I want to have some description for my method
/// <summary>
/// Perform a divide by b
/// e.g a = 1, b = 2
/// will return 0, since (1/2) = 0.5
/// </summary>
/// <returns>int value</returns>
public static int Div(int a, int b)
{
return (a / b);
}
and i want the description show in the same format that i type.. however, those text will always display in oneline.
is there any tag that i can use to ask visual studio to include all those space and new line?
Thanks