How can I automate searching for strings in all .cs files and add certain code for localization, where I can use a key in resource files. Lets say there is a
string s = "A"
in cs files. I need to change it to something like
string s = ("A","ResourceFileKey")
and then add to the resource file keys with country specific values. Is there any tool available? Presently I am using macros and searching ...