Automatic Properties and Structures Don't Mix? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:12:48Z http://stackoverflow.com/feeds/question/420433 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/420433/automatic-properties-and-structures-dont-mix 4 Automatic Properties and Structures Don't Mix? Mike Rosenblum 2009-01-07T14:14:34Z 2009-02-11T05:55:36Z <p>Kicking around some small structures while answering <a href="http://stackoverflow.com/questions/414981/directly-modifying-listt-elements">this post</a>, I came across the following unexpectedly:</p> <p>The following structure, using an int field is perfectly legal:</p> <pre><code>struct MyStruct { public MyStruct ( int size ) { this.Size = size; // &lt;-- Legal assignment. } public int Size; } </code></pre> <p>However, the following structure, using an automatic property does not compile:</p> <pre><code>struct MyStruct { public MyStruct ( int size ) { this.Size = size; // &lt;-- Compile-Time Error! } public int Size{get; set;} } </code></pre> <p>The error returned is "The 'this' object cannot be used before all of its fields are assigned to". I know that this is standard procedure for a struct: the backing field for any property must be assigned directly (and not via the property's set accessor) from within the struct's constructor. </p> <p>A solution is to use an explicit backing field:</p> <pre><code>struct MyStruct { public MyStruct(int size) { _size = size; } private int _size; public int Size { get { return _size; } set { _size = value; } } } </code></pre> <p>(Note that VB.NET would not have this issue, because in VB.NET all fields are automatically initialized to 0/null/false when first created.)</p> <p>This would seem to be an unfortunate limitation when using automatic properties with structs in C#. Thinking conceptually, I was wondering if this wouldn't be a reasonable place for there to be an exception that allows the property set accessor to be called within a struct's constructor, at least for an automatic property?</p> <p>This is a minor issue, almost an edge-case, but I was wondering what others thought about this...</p> http://stackoverflow.com/questions/420433/automatic-properties-and-structures-dont-mix/420441#420441 7 Answer by Marc Gravell for Automatic Properties and Structures Don't Mix? Marc Gravell 2009-01-07T14:17:23Z 2009-01-07T14:18:23Z <p>You need to call the default constructor for this to work:</p> <pre><code>public MyStruct(int size) : this() { Size = size; } </code></pre> <p>A bigger problem here is that you have a mutable struct. This is <strong>never</strong> a good idea. I would make it:</p> <pre><code>public int Size {get; private set;} </code></pre> <p>Not <em>technically</em> immutable, but close enough.</p> http://stackoverflow.com/questions/420433/automatic-properties-and-structures-dont-mix/420454#420454 4 Answer by Stormenet for Automatic Properties and Structures Don't Mix? Stormenet 2009-01-07T14:21:08Z 2009-01-07T14:23:05Z <p>You can fix this by first calling the default constructor:</p> <pre><code> struct MyStruct { public MyStruct(int size) : this() { this.Size = size; // &lt;-- now works } public int Size { get; set; } } </code></pre> http://stackoverflow.com/questions/420433/automatic-properties-and-structures-dont-mix/535565#535565 1 Answer by Daniel Fortunov for Automatic Properties and Structures Don't Mix? Daniel Fortunov 2009-02-11T05:50:18Z 2009-02-11T05:55:36Z <p>Another obscure work-around to this problem is one spotted in the temporary <code>Tuple</code> class in the <a href="http://www.codeplex.com/MEF" rel="nofollow">Managed Extensibility Framework</a> (via <a href="http://kozmic.pl/archive/2008/09/24/framework-tips-xi-what-is-this.aspx" rel="nofollow">Krzysztof Koźmic</a>):</p> <pre><code>public struct TempTuple&lt;TFirst, TSecond&gt; { public TempTuple(TFirst first, TSecond second) { this = new TempTuple&lt;TFirst, TSecond&gt;(); // Kung fu! this.First = first; this.Second = second; } public TFirst First { get; private set; } public TSecond Second { get; private set; } </code></pre> <p>(Full source code from Codeplex: <a href="http://www.codeplex.com/MEF/SourceControl/changeset/view/28358#391337" rel="nofollow">Tuple.cs</a>)</p> <p>I also note that the documentation for <a href="http://msdn.microsoft.com/en-us/library/w29h4276.aspx" rel="nofollow">CS0188</a> has been updated to add:</p> <blockquote> <p>If you see this error when trying to initialize a property in a struct constructor, the solution is to change the constructor parameter to specify the backing field instead of the property itself. <strong>Auto-implemented properties should be avoided in structs because they have no backing field and therefore cannot be initialized in any way from the constructor.</strong></p> </blockquote> <p>So I take that to mean that the official guidance is to use old-style properties in your structs when you run in to this problem, which is probably less obscure (and more readible) than either of the other two alternatives explored so far.</p>