用“>”替换列选择删除代码行

时间:2012-04-20 09:11:03

标签: c# visual-studio-2010

我有几行属性定义,例如:

public InputProp<string CsProtocol { private get; set; }
public InputProp<string CsHost { private get; set; }
public InputProp<string CsPort { private get; set; }
public InputProp<string CsService { private get; set; }

现在我想在>之后插入string 所以我使用列选择( Alt + DrawLeftMouse )在所有行中的 string 之后选择列。在此之后,我按>,并期望在所有行的>之后插入string
但不幸的是,第一行被删除,>仅插入到最后一行 >有什么特别之处?它适用于其他角色。

是否有解决方法或修复方法在列选择中插入>

1 个答案:

答案 0 :(得分:3)

为什么不选择行并使用查找和替换功能?

  • 找到:InputProp<string(不要忘记字符串后的空格)
  • 替换:InputProp<string>