Does anyone have or know of a way to quickly change a selection into properties for C#? example, I often will have a list of column names from a database and would like to select them and have them convert to properties either by autotext or a template or macro not really picky just lazy
i.e. list here
SiteId
FirmId
PurchaseDate
ExpirationDate
converts to
private int _SiteId;
public int SiteId {
get { return _SiteId; }
set { _SiteId = value; }
} etc.......
thanks for any help