注释掉在VisualStudio中找到的行

时间:2016-11-28 13:54:24

标签: c# visual-studio comments

我正在查看包含以下术语的c#Code代码:

  

System.Drawing.SystemColors.Highlight

我想在包含使用“查找和替换VisualStudio功能”的术语的每一行的前面设置注释标记(//)。

你们知道快速的方法吗?

3 个答案:

答案 0 :(得分:4)

您可以使用:

  • Text to find - >的 ^(.*System.Drawing.SystemColors.Highlight.*)$
  • Replace with - >的 //$1
  • 使用RegEx搜索选项 - > .* [x] Use Regular Expressions

答案 1 :(得分:3)

CTRL + H 打开查找&取代

查找“System.Drawing.SystemColors.Highlight
并将其替换为“// System.Drawing.SystemColors.Highlight”。

答案 2 :(得分:1)

您可以使用正则表达式执行此操作。

搜索:(^.*System.Drawing.SystemColors.Highlight.*)$ 替换为://$1