VS2015 string replacement with Regular Expression
Case:
replace Set(“PropertyName”, ref property, value) to Set(() => PropertyName, ref property, value)
The regular expression:
1 |
Set\("(\w+)" |
The replacement expression:
1 |
Set(() => $1 |