VS2017 - Linebreaks in intellisense
-
How do you do it? I've tried using <br /> <br/> & In VS2017, the &br /> tag works, but i need something that will work in VS2017.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013 -
How do you do it? I've tried using <br /> <br/> & In VS2017, the &br /> tag works, but i need something that will work in VS2017.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013Assuming you're talking about the XML doc comments, have you tried using the
<para>
tag to wrap your lines?/// <summary>
/// <para>Line 1</para>
/// <para>Line 2</para>
/// </summary>Recommended tags for documentation comments - C# programming guide | Microsoft Docs[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
Assuming you're talking about the XML doc comments, have you tried using the
<para>
tag to wrap your lines?/// <summary>
/// <para>Line 1</para>
/// <para>Line 2</para>
/// </summary>Recommended tags for documentation comments - C# programming guide | Microsoft Docs[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
Yes, the xml comments. I already know about the para tag, but that only makes a new paragraph which is not what I want. I'm talking about actual line breaks. In VS2019, you can put <br/> in the comments, and it will do what I want.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013