开发者

How to avoid hardcoding strings

开发者 https://www.devze.com 2023-03-21 06:16 出处:网络
This is a que开发者_JS百科stion regarding best coding practices. I would like to know the consensus about how to best avoid hardcoding strings and values in a .NET application.

This is a que开发者_JS百科stion regarding best coding practices. I would like to know the consensus about how to best avoid hardcoding strings and values in a .NET application. What I've seen so far where I have previously worked:

  • using resource .resx files
  • storing these values and strings in App.config or web.config
  • making a static class ApplicationStrings and declaring all the strings and values in there:

    public static class ApplicationStrings
    {
        #region constants
        public const string APPLICATION_NAME = "X";
        public const string APPLICATION_RESOURCEMANAGER_NAME = "ResourceManagerX";
        public const string APPLICATION_DEFAULT_LOGFILENAME = "log.txt";
    }
    

However, is not the 3rd method, just another hardcode? Does it make sense to have such a class? The benefit would be that all strings are in one place, but is that really avoiding a hardcode?

Also, if you have developed other habits for this situation, feel free to post.


The main benefit is indeed to have all strings in one place and you only need to change it there to update the whole program. If different parts of your program use the same string and one instance gets updated, but another not, then you have a problem. This holds true for all literals, by the way.

And then with resource files there is the benefit of i18n and l10n. If you need it, but many large applications should.


in general i believe it is good practice to store all configurable data in a central config file so all the data is in one place and can be shared by other apps


In my opinion ApplicationSettings is only useful if your settings are (i) genuinely constants and (ii) of course truly public. If either of these cases is not true then this is not ideal and your choice is back to a .config file .resx


Well, I think that ApplicationStrings is a good solution

0

精彩评论

暂无评论...
验证码 换一张
取 消