xml martkup of C# code
-
Does anyone know how to insert a line break character within the or section of an xml comment / description associated with a method / property / class so that the printout in intellisense or HTML documentation includes this line break? Thanks.
-
Does anyone know how to insert a line break character within the or section of an xml comment / description associated with a method / property / class so that the printout in intellisense or HTML documentation includes this line break? Thanks.
It is just slightly extended XHTML with some additional tags such as "summary", "remarks", "see", "param" etc. Putting paragraphs between <p> & </p> or putting <br/> for simple linebreaks should work.
Upcoming Scottish Developers events: * UK Security Evangelists On Tour (2nd November, Edinburgh) * Developer Day Scotland: are you interested in speaking or attending? My: Website | Blog
-
It is just slightly extended XHTML with some additional tags such as "summary", "remarks", "see", "param" etc. Putting paragraphs between <p> & </p> or putting <br/> for simple linebreaks should work.
Upcoming Scottish Developers events: * UK Security Evangelists On Tour (2nd November, Edinburgh) * Developer Day Scotland: are you interested in speaking or attending? My: Website | Blog
funny, I've tried both but neither create a line break in the intellisense helptab. I couldn't recall the codes but you've reminded me and I believe they do work with, e.g., NDoc. Thanks.
-
funny, I've tried both but neither create a line break in the intellisense helptab. I couldn't recall the codes but you've reminded me and I believe they do work with, e.g., NDoc. Thanks.
You just use <para>. http://msdn.microsoft.com/msdnmag/issues/02/06/xmlc/[^]