Is string a value type or a reference type? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T05:49:36Z http://stackoverflow.com/feeds/question/1069155 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1069155/is-string-a-value-type-or-a-reference-type 7 Is string a value type or a reference type? Schwertz http://stackoverflow.com/users/129495 2009-07-01T13:30:26Z 2009-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#1069163 8 Answer by Darin Dimitrov for Is string a value type or a reference type? Darin Dimitrov http://stackoverflow.com/users/29407 2009-07-01T13:31:58Z 2009-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#1069166 9 Answer by Kevin for Is string a value type or a reference type? Kevin http://stackoverflow.com/users/1942 2009-07-01T13:32:23Z 2009-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#1069173 1 Answer by hadi teo for Is string a value type or a reference type? hadi teo http://stackoverflow.com/users/122336 2009-07-01T13:33:32Z 2009-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#1069175 19 Answer by Marc Gravell for Is string a value type or a reference type? Marc Gravell http://stackoverflow.com/users/23354 2009-07-01T13:34:05Z 2009-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#1069178 2 Answer by JaredPar for Is string a value type or a reference type? JaredPar http://stackoverflow.com/users/23283 2009-07-01T13:34:13Z 2009-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#1069292 1 Answer by Charles Bretana for Is string a value type or a reference type? Charles Bretana http://stackoverflow.com/users/32632 2009-07-01T14:04:32Z 2009-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>