通常、次のような状況になります。プロパティのリストを持つPONOクラスがあります。
public string UserName
{
get { return this.userName; }
set { if (this.userName != value) { SetDirty(); this.userName = value; } }
}
public string Password
{
get { return this.password; }
set { if (this.password != value) { SetDirty(); this.password = value; } }
}
public string Email
{
get { return this.email; }
set { if (this.email != value) { SetDirty(); this.email = value; } }
}
public string Title
{
get { return this.title; }
set { if (this.title != value) { SetDirty(); this.title = value; } }
}
正規表現の出力を別のファイルに抽出するためのツール、できればNotepad ++またはVSプラグインはありますか?
例:検索: "public string(。*)$"結果:
UserName
Password
Email
Title
新しいファイルで。