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.
|
|
The reason that
I found this information from this handy article at CodeProject. |
||||
|
|
|
Because Please look at the comments to this question as they contain extra details and discussion of the topic |
||||||||||||
|
|
|
because a constant will create and object when string.Empty does not |
||||||
|
|
|
According to this link, the reason is that by making it a readonly property you save one object creation for maximum efficiency. |
||||
|
|
|
For all intents and purposes it is constant... unless you know something I don't about how to change it or how to create duplicate instances. |
||
|
|
|
|
I think there is a lot of confusion and bad responses here. First of all, Check section 10.4 Constants of the C# language specification.
If Given this, the following lines of code do exactly the same thing in respect to the creation of a new Object.
Here is a note from Microsoft that explains the difference between the 2:
So I find that the only plausible answer here is Jeff Yates's. |
||
|
