Meaning of confusing comment above “string.Empty” in .NET/BCL source?
The important part is not what happens IN this class, but what happens, when another class uses (and links to) it. Let me explain with another example: Assume you have a Assembly1.dll containing a class declaring public static const int SOME_ERROR_CODE=0x10; public static readonly int SOME_OTHER_ERROR_CODE=0x20; and another class consuming this e.g. public int TryFoo() … Read more