我有几行属性定义,例如:
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; }
现在我想>
在 s 之后插入一个string
。
所以我使用列选择(Alt+DrawLeftMouse)在所有行中选择字符串后的列。之后,我按下>
并期望>
将在string
所有行的 s 之后插入。
但不幸的是,第一行被删除,>
只插入到最后一行。
有什么特别之处>
?它适用于其他角色。
>
在列选择中插入是否有解决方法或修复?