Possible Duplicate:
Why isn't String.Empty a constant?
...and not const
?
I know its probably a useless question, but I'm sort of curious on the reasoning behind this one. An empty string
is an empty string
so I do not foresee many chances of string.Empty
being anything else than ""
. So why make it readonly
?
Is there any other benefit I'm missing in not making it const
?