Optimal solution for struct with more than 16 bytes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:49:00Z http://stackoverflow.com/feeds/question/410611 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/410611/optimal-solution-for-struct-with-more-than-16-bytes 0 Optimal solution for struct with more than 16 bytes chaowman 2009-01-04T07:32:04Z 2009-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#410621 0 Answer by Software Monkey for Optimal solution for struct with more than 16 bytes Software Monkey 2009-01-04T07:40:13Z 2009-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#410627 0 Answer by Dmitri Nesteruk for Optimal solution for struct with more than 16 bytes Dmitri Nesteruk 2009-01-04T07:44:35Z 2009-01-04T07:44:35Z <p>How about a <code>WriteOnce&lt;int[]&gt;</code> ?</p> http://stackoverflow.com/questions/410611/optimal-solution-for-struct-with-more-than-16-bytes/410633#410633 3 Answer by vboctor for Optimal solution for struct with more than 16 bytes vboctor 2009-01-04T07:51:00Z 2009-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#410652 1 Answer by Dana Robinson for Optimal solution for struct with more than 16 bytes Dana Robinson 2009-01-04T08:13:38Z 2009-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 -1 Answer by Chris Nava for Optimal solution for struct with more than 16 bytes Chris Nava 2009-01-04T09:04:12Z 2009-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>