Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
543 views

Coffeescript: How to comment? - “/* my comments */” doesn't work?

In what ways can you comment in Coffeescript? The docs say you can use 3 hash symbols to start and close a comment block ### comments go here ### I've found that I can sometimes use the ...
5
votes
4answers
1k views

Lack of block comments in VB .NET?

Just a question of interest: Does anyone know why there's no block comment capability in VB .NET? (Unless there really is - but I've never yet come across it.)
3
votes
5answers
667 views

Including */ in a C-style block comment

Is there any way to include */ in a C-style block comment? Changing the block comment to a series of line comments (//) is not an option in this case. Here's an example of the sort of comment causing ...
1
vote
2answers
610 views

How do you make a block comment in SVG

I'm trying to learn SVG for the first time but the code seems to have an issue with my block comments. I'm using: /* This is my * block comment */ And when I run my code, I get the following ...
0
votes
1answer
261 views

auto formatting new line after inline block comment

Visual Studio autoformat places a new line after all block comments - at least the one I am using. It does so obviously only for those comments, which come first on a line. /*mark1*/ double[] a = ...