Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# /// summary, SINGLE line break (IntelliSense)

If I use the <para></para> statement in a C# ///summary, I get a blank line and then the text goes on, which is equivalent to two line breaks (<br/> or \n).

However I'd really like to add single line breaks, which just cause my text to start at the next line, without leaving a blank line in between.

The suggested solutions don't work for me, see a screenshot: Two line breaks

Update: I'm using Visual Studio 2015 with Visual Assist Plugin, no manual changes done to any intelli-sense formatting options.

Update 2: It's not caused by the Visual Assist Plugin (I disabled it). It seems to be simply different in VS2015.

like image 832
jmd42 Avatar asked Oct 09 '15 13:10

jmd42


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Why is C named so?

Quote from wikipedia: "A successor to the programming language B, C was originally developed at Bell Labs by Dennis Ritchie between 1972 and 1973 to construct utilities running on Unix." The creators want that everyone "see" his language. So he named it "C".

What kind of language is C?

C is a procedural programming language. It was initially developed by Dennis Ritchie in the year 1972. It was mainly developed as a system programming language to write an operating system.


1 Answers

This is by the design of visual studio editor. If you are using Visual Studio's editor to view the summary, they have restricted it for limited html elements. You can still use most of the html elements to format your summary and will be applied when you export the documentation, but visual studio ignores them.

I think resharper intellisense formats the summary with

like image 88
rAhulD Avatar answered Sep 29 '22 12:09

rAhulD