|
2 |
edited tags
|
||
|
1 |
|
||
Should we store format strings in resources?For the project that I'm currently on, I have to deliver specially formatted strings to a 3rd party service for processing. And so I'm building up the strings like so:
Rather then hardcode the string, I was thinking of moving it into the project resources:
The second option is in my opinion, not as readable as the first one i.e. the person reading the code would have to pull up the string resources to work out what the final result should look like. How do I get around this? Is the hardcoded format string a necessary evil in this case?
|
||||
