In my code, I have statements like this:
Project.MVC.Bll.Resources.<resource-name>
And I want to replace them with
ProjectResources.GetString("<resouce-name>")
I want to use the visual studio Find And Replace with regular expression, but the problem is that I don't know how to "take" the resource-name.
For the search pattern I'm using Project.MVC.Bll.Resources.*
, but I have no idea what the replacement pattern will be, in order to put the resource name in the brackets.