On the one hand MSDN says:
The XML doc comments are not metadata; they are not included in the compiled assembly ...
But on the other hand, Intellisense shows them in Visual Studio for .net classes etc. (e.g. if you hover over Int32
.)
To avoid misunderstandings: I'm referring to these:
/// <summary>
/// These comments.
/// </summary>
void example()
{
//Not these.
}