I just can't find a "good" explanation for this...
|
|
It's a reference type. It can't be a value-type, as value-types need a known size for the stack etc. As a reference-type, the size of the reference is known in advance, even if the size of the string isn't. It behaves like you expect a value-type to behave because it is immutable; i.e. it doesn't* change once created. But there are lots of other immutable reference-types. Delegate instances, for example. *=except for inside |
||||
|
|
|
The fundamental "explanation" is based on "what" is actually stored in the memory location allocated when you "declare" the variable for the thing. If the actual value of the thing is stored in the memory location referred to by the variable name, then it is a value type.
If, otoh, the memory slot allocated when you "declare" the variable will hold only some other memory address where the actual value (or values) will be stored, then it is a reference type.
or, if declaration includes initialization,
for a string, the string is created on the Heap, and it's address goes in the memory slot allocated for the variable, so it is a reference type. |
|||
|
|
|
|
String is an immutable reference type which has certain qualities that give it the occasional appearance of being a value type |
||
|
|
|
|
Hi Schwertz Maybe this article can help you. According to this article, string is a reference type. Regards, hadi |
||
|
|
|
|
String is an immutable reference type. link on immutability: |
||||
|
