Optimal solution for struct with more than 16 bytes - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T04:49:00Zhttp://stackoverflow.com/feeds/question/410611http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/410611/optimal-solution-for-struct-with-more-than-16-bytes0Optimal solution for struct with more than 16 byteschaowman2009-01-04T07:32:04Z2009-01-04T10:32:11Z
<p>I have a type which I consider use it as struct.</p>
<ul>
<li>It represents single value</li>
<li>It is immutable</li>
</ul>
<p>But the problem is, it has 6 fields of int.</p>
<p>So which solution I should use for this type?</p>
<ol>
<li>keep using struct?</li>
<li>change to class?</li>
<li>or pack 6 integers into an array of int, so it has only one field</li>
</ol>
<p><strong>EDIT</strong></p>
<p>Size of struct with 6 integer fields is 24 bytes, which is huge to pass around.
Recommend size for struct is not more than 16 bytes</p>
http://stackoverflow.com/questions/410611/optimal-solution-for-struct-with-more-than-16-bytes/410621#4106210Answer by Software Monkey for Optimal solution for struct with more than 16 bytesSoftware Monkey2009-01-04T07:40:13Z2009-01-04T07:40:13Z<p>Without seeing your struct, it's difficult to say anything definitively. But I suspect you should leave this as a struct.</p>
http://stackoverflow.com/questions/410611/optimal-solution-for-struct-with-more-than-16-bytes/410627#4106270Answer by Dmitri Nesteruk for Optimal solution for struct with more than 16 bytesDmitri Nesteruk2009-01-04T07:44:35Z2009-01-04T07:44:35Z<p>How about a <code>WriteOnce<int[]></code> ?</p>
http://stackoverflow.com/questions/410611/optimal-solution-for-struct-with-more-than-16-bytes/410633#4106333Answer by vboctor for Optimal solution for struct with more than 16 bytesvboctor2009-01-04T07:51:00Z2009-01-04T07:51:00Z<p>It depends how you are going to use it?</p>
<ol>
<li>Are you going to allocate a lot of it vs. pass it around a lot?</li>
<li>Is it going to be consumed by 3rd party code? In this case, classes typically give you more flexibility.</li>
<li>Do you want struct vs. class semantics? For example, non-nullable?</li>
<li>Would you benefit from having a couple of pre-created instances of this class that can be re-use to represent special cases? Similar to String.Empty. In this case you would benefit from a class.</li>
</ol>
<p>It is hard to answer just from the information you provided in your question.</p>
http://stackoverflow.com/questions/410611/optimal-solution-for-struct-with-more-than-16-bytes/410652#4106521Answer by Dana Robinson for Optimal solution for struct with more than 16 bytesDana Robinson2009-01-04T08:13:38Z2009-01-04T08:13:38Z<p>Be careful of boxing. If your struct is going to be consumed by a method which expects an Object, it will be coerced into an object and you'll have a potential performance hit.</p>
<p>Here's a <a href="http://www.c-sharpcorner.com/UploadFile/stuart_fujitani/BoxNUnbox11192005055746AM/BoxNUnbox.aspx" rel="nofollow">reference</a> that explains it in more detail.</p>
<p>I'd make it a class (#2) and then you wouldn't have to worry about it.</p>
<p>Using an array of six integers (#3) would probably make your code harder to read. A class with descriptive identifiers for each int would be much better.</p>
http://stackoverflow.com/questions/410611/optimal-solution-for-struct-with-more-than-16-bytes/410703#410703-1Answer by Chris Nava for Optimal solution for struct with more than 16 bytesChris Nava2009-01-04T09:04:12Z2009-01-04T09:04:12Z<p>In general, when storing more than two pieces of related data I like to make a class that binds them together. Especially if I will be passing them around as a unit.</p>