VB.NET中代码注释和XML注释的颜色不同

时间:2011-09-26 10:29:29

标签: c# vb.net visual-studio visual-studio-2005

我注意到在C#中XML注释和代码注释可以通过更改工具>中的设置而具有不同的颜色。选项>环境>字体和颜色>显示项目: - 评论:控制代码注释 - XML注释:控制XML注释

这适用于C#

///<summary>This XML comment is green</summary>

//This code comment is red

但不是在VB.NET中

'''<summary>This XML comment appears red too even though it's configured as green</summary>

'This code comment is red

有没有办法解决这个问题?

2 个答案:

答案 0 :(得分:10)

VB和C#的着色设置因各种语言而异。

以下是两者之间相应设置的部分列表:

C#                 VB
Comment            Comment
XML Doc Attribute  VB XML Attribute
XML Doc Comment    VB XML Comment (the second one)
XML Doc Tag        VB XML Doc Tag

答案 1 :(得分:2)

我不知道您正在使用哪个IDE进行开发。对于Visual Studio 2010,单击工具&gt;选项&gt;环境&gt;字体和颜色。在Show settings for下拉列表中,选择Text Editor。

在显示项目中:选择评论。这将改变代码中注释的颜色。

显示项目中的下一步:选择VB XML Comment。这将更改使用的XML注释的颜色。可能有2个具有相同名称的项目;我不得不改变第二个。