2

プロパティ定義の行がいくつかあります。たとえば、次のとおりです。

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 の後にa を挿入しstringます。
したがって、列選択 ( Alt+DrawLeftMouse ) を使用して、すべての行で文字列の後に列を選択します。その後、すべての行の s の後に挿入されること>を期待して押します。 残念ながら、最初の行は削除され、最後の行にのみ挿入されます。 何がそんなに特別なのですか?他のキャラクターと連携します。 >string
>
>

>列の選択に挿入するための回避策または修正はありますか?

4

1 に答える 1

3

行を選択して、検索と置換機能を使用してみませんか?

  • find: InputProp<string(文字列の後のスペースを忘れないでください)
  • 交換:InputProp<string>
于 2012-04-20T09:14:04.850 に答える