如何阻止Visual Studio在块注释期间自动插入星号?

How do I stop Visual Studio from automatically inserting asterisk during a block comment?

我正在用这个把头发扯掉。如果我在VS.NET 2005中启动块注释/*,然后回车,Visual Studio会坚持认为我还有另一个星号*。我知道可以关闭此功能,但我找不到它。有谁知道如何关闭此功能?


此帖子解决了您的问题。要点是:

1
Text Editor > C# > Advanced > Generate XML documentation comments for ///

Visual Studio 2015 Update 2已(最终)解决了此问题!

已添加到名为Insert * at the start of new lines when writing /* */ commentsTools > Options > Text Editor > C# > Advanced的新选项。

禁用此选项可防止编辑器为块注释自动加星号。只花了7.5年的时间,发布了4个主要版本:)

enter image description here


尝试一下:

1
2
3
4
5
6
#if false

    whatever you want here
    and here

#endif

工具->选项。

取消选中文本编辑器> C#>高级>为///

生成XML文档注释


推荐阅读