I need to move all the hard coded strings in my source code in .resx files. Is there a tool that could help me find all the hardcoded strings within C# code?
|
ReSharper 5 is obvious a choice, but many tips must be set so as to achieve your goals,
Then you can find almost all you need in Errors in Solution panel. Hope this helps. |
|||||||
|
|
What about this: |
|||
|
|
|
You could always do a search for the |
|||
|
|
Resharper 5.0 (Beta) allows you to move strings to resources (it has built in Localization feature). Give it a try. Beta works fine, i use it every day and have no problems. Best of all it's free until out of beta. I even recommend using night builds as they seem to be stable.
|
|||||
|
|
This tool http://visuallocalizer.codeplex.com/ allows for batch-move strings to resources, together with other features. It is FOSS so maybe you can give it a try. (I am involved) |
|||
|
|
|
Some are found by FxCop. Not sure what its limits are, I think it depends on parameter and property names (eg: a property called "Text" is considered to be localized). |
|||
|
|