Обычно у меня возникает следующая ситуация: существует класс 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, для извлечения вывода регулярного выражения в другой файл?
Например: Find: "public string (. *) $" Результаты:
UserName
Password
Email
Title
в новом файле.