Is string a value type or a reference type? - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T05:49:36Zhttp://stackoverflow.com/feeds/question/1069155http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1069155/is-string-a-value-type-or-a-reference-type7Is string a value type or a reference type?Schwertzhttp://stackoverflow.com/users/1294952009-07-01T13:30:26Z2009-07-02T00:18:23Z
<p>I just can't find a "good" explanation for this...</p>
http://stackoverflow.com/questions/1069155/is-string-a-value-type-or-a-reference-type/1069163#10691638Answer by Darin Dimitrov for Is string a value type or a reference type?Darin Dimitrovhttp://stackoverflow.com/users/294072009-07-01T13:31:58Z2009-07-01T13:31:58Z<p><a href="http://www.yoda.arachsys.com/csharp/strings.html" rel="nofollow">String is a reference type</a>.</p>
http://stackoverflow.com/questions/1069155/is-string-a-value-type-or-a-reference-type/1069166#10691669Answer by Kevin for Is string a value type or a reference type?Kevinhttp://stackoverflow.com/users/19422009-07-01T13:32:23Z2009-07-01T13:32:23Z<p>String is an immutable reference type.</p>
<p>link on immutability: </p>
<p><a href="http://codebetter.com/blogs/patricksmacchia/archive/2008/01/13/immutable-types-understand-them-and-use-them.aspx" rel="nofollow">http://codebetter.com/blogs/patricksmacchia/archive/2008/01/13/immutable-types-understand-them-and-use-them.aspx</a></p>
http://stackoverflow.com/questions/1069155/is-string-a-value-type-or-a-reference-type/1069173#10691731Answer by hadi teo for Is string a value type or a reference type?hadi teohttp://stackoverflow.com/users/1223362009-07-01T13:33:32Z2009-07-01T13:33:32Z<p>Hi Schwertz</p>
<p>Maybe this <a href="http://www.yoda.arachsys.com/csharp/strings.html" rel="nofollow">article</a> can help you. According to this article, string is a reference type.</p>
<p>Regards,</p>
<p>hadi</p>
http://stackoverflow.com/questions/1069155/is-string-a-value-type-or-a-reference-type/1069175#106917519Answer by Marc Gravell for Is string a value type or a reference type?Marc Gravellhttp://stackoverflow.com/users/233542009-07-01T13:34:05Z2009-07-01T13:34:05Z<pre><code>Console.WriteLine(typeof(string).IsClass); // true
</code></pre>
<p>It's a reference type.</p>
<p>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 <strong>reference</strong> is known in advance, even if the size of the string isn't.</p>
<p>It <em>behaves</em> 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.</p>
<p>*=except for inside <code>StringBuilder</code>, but you never see it while it is doing this...</p>
http://stackoverflow.com/questions/1069155/is-string-a-value-type-or-a-reference-type/1069178#10691782Answer by JaredPar for Is string a value type or a reference type?JaredParhttp://stackoverflow.com/users/232832009-07-01T13:34:13Z2009-07-01T13:34:13Z<p>String is an immutable reference type which has certain qualities that give it the occasional appearance of being a value type</p>
http://stackoverflow.com/questions/1069155/is-string-a-value-type-or-a-reference-type/1069292#10692921Answer by Charles Bretana for Is string a value type or a reference type?Charles Bretanahttp://stackoverflow.com/users/326322009-07-01T14:04:32Z2009-07-02T00:18:23Z<p>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. </p>
<pre><code> int x; // memory allocated to hold Value of x, default value assigned of zero
</code></pre>
<p>If, otoh, the memory slot allocated when you "declare" the variable will hold only some <em>other</em> memory address where the actual value (or values) will be stored, then it is a reference type.</p>
<pre><code> MyClass x; // Memory allocated to hold an address,
// default address of null (0) assigned.
// NO MEMORY ALLOCATED for x itself
</code></pre>
<p>or, if declaration includes initialization,</p>
<pre><code> MyClass x = new MyClass();
// Now, Memory slot (call it Addr1) is allocated to hold address of x,
// more memory (call it Addr2) is allocated to hold a new MyClass object.
// New MyClass object created, stored in memory Addr2 (on the Heap)
// Address of new object (Addr2) is stored in Addr1
</code></pre>
<p>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. </p>