In .Net why is String.Empty read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.

link|improve this question

1  
This question can solve this one, the brief answer is, no one knows... – gdoron Dec 15 '11 at 7:37
Yeah, +1 for the Eric Lippert response, thanks! – travis Dec 15 '11 at 16:06
Particularly given that Decimal.Zero is const (from the user perspective that is ...) – Hamish Grubijan Mar 12 at 23:01
feedback

3 Answers

up vote 55 down vote accepted

The reason that static readonly is used instead of const is due to use with unmanaged code, as indicated by Microsoft here in the Shared Source Common Language Infrastructure 2.0 Release. The file to look at is sscli20\clr\src\bcl\system\string.cs.

The Empty constant holds the empty string value. We need to call the String constructor so that the compiler doesn't mark this as a literal.

Marking this as a literal would mean that it doesn't show up as a field which we can access from native.

I found this information from this handy article at CodeProject.

link|improve this answer
2  
Google is our friend. :) – Jeff Yates Feb 3 '09 at 17:55
One of the best friends in deed. :) – iSid Aug 4 '10 at 11:49
8  
Dealers always start out friendly ... – MusiGenesis Feb 14 '11 at 23:45
5  
And now Google will find this answer, so win-win. – vargonian Feb 15 '11 at 0:51
I would really appreciate if you can explain this comment (because Jon Skeet couldn't...) see here:stackoverflow.com/questions/8462697/… – gdoron Dec 12 '11 at 2:09
show 1 more comment
feedback

I think there is a lot of confusion and bad responses here.

First of all, const fields are static members (not instance members).

Check section 10.4 Constants of the C# language specification.

Even though constants are considered static members, a constant-declaration neither requires nor allows a static modifier.

If public const members are static, one could not consider that a constant will create a new Object.

Given this, the following lines of code do exactly the same thing in respect to the creation of a new Object.

public static readonly string Empty = "";
public const string Empty = "";

Here is a note from Microsoft that explains the difference between the 2:

The readonly keyword is different from the const keyword. A const field can only be initialized at the declaration of the field. A readonly field can be initialized either at the declaration or in a constructor. Therefore, readonly fields can have different values depending on the constructor used. Also, while a const field is a compile-time constant, the readonly field can be used for runtime constants, ...

So I find that the only plausible answer here is Jeff Yates's.

link|improve this answer
+1 for the kind words and clarification regarding C# spec on const and static readonly. – Jeff Yates Feb 3 '09 at 17:46
feedback

Because String is a class and therefore cannot be a constant.

Please look at the comments to this question as they contain extra details and discussion of the topic

link|improve this answer
Please, vote down the correct answer. If you Goto Definition, you'll find that it is on the String class and is an instance of String. The fact that it shows as lower case is compiler magic. – Garry Shutler Feb 3 '09 at 16:54
It wasn't me who downvoted you but in .NET, (unlike in Java) string and String are exactly the same. And yes, you can have string literal constants in .NET – DrJokepu Feb 3 '09 at 16:57
I didnt DV you, but can you humor me a bit. Are you saying that a Class cannot have constants? – StingyJack Feb 3 '09 at 16:58
5  
This answer would be correct for nearly any other class but System.String. .NET does a lot of performance special-casing for strings, and one of them is that you CAN have string constants, just try it. In this case, Jeff Yates has the correct answer. – Joel Mueller Feb 3 '09 at 19:25
4  
I nearly deleted this answer as a much better one came along, but the discussion in these comments is worth keeping. – Garry Shutler Feb 4 '09 at 16:38
show 12 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.