Is there a way to format class comments so when they appear in the tooltip of intellisense it looks formatted? For instance, if I have this:
When I access Class1 from the code window, intellisense displays a small tooltip window with what's in the <summay> tags. This is what I'm trying to format. Instead of all the text running together and making it hard to read, I'd like to see it something like this:
I've tried this but it puts it all on one line. I tried <br> and \n\r as well, but nothing seems to work. Any ideas?
Code:
/// <summary>
/// Summary description for Class1.
/// this is just another summary for another class
/// that was created for some reason other than the simple
/// fact of creating a creation of classes to create.
/// </summary>
class Class1
{
}
When I access Class1 from the code window, intellisense displays a small tooltip window with what's in the <summay> tags. This is what I'm trying to format. Instead of all the text running together and making it hard to read, I'd like to see it something like this:
Code:
/// <summary>
/// Summary description for Class1.
///
/// This is just another summary for another class
/// that was created.
///
/// Reason:
/// for some reason other than the simple
/// fact of creating a creation of classes to create.
/// </summary>
class Class1
{
}
I've tried this but it puts it all on one line. I tried <br> and \n\r as well, but nothing seems to work. Any ideas?