When should I explicitly specify a StructLayout? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T00:19:40Zhttp://stackoverflow.com/feeds/question/393943http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/393943/when-should-i-explicitly-specify-a-structlayout0When should I explicitly specify a StructLayout?biozinc2008-12-26T16:25:01Z2008-12-27T12:02:58Z
<p>I'm fiddling with calling DLLs from C#, and came across the need to define my own structs. Lots of articles force a sequential layout for the struct with</p>
<pre><code>[StructLayout(LayoutKind.Sequential)]
struct Foo ...
</code></pre>
<p>So, I followed suite, and my programme worked. Now, when I took the line out, it still works. Why do I need it?</p>
http://stackoverflow.com/questions/393943/when-should-i-explicitly-specify-a-structlayout/393964#3939643Answer by nobugz for When should I explicitly specify a StructLayout?nobugz2008-12-26T16:41:45Z2008-12-26T16:41:45Z<p>The internal layout of a managed struct is undocumented and undiscoverable. Implementation details like member order and packing are intentionally hidden. With the [StructLayout] attribute, you force the P/Invoke marshaller to impose a specific layout and packing.</p>
<p>That the default just happens to match what you need to get your code to work is merely an accident. Although not an uncommon one. Note the Type.StructLayoutAttribute property.</p>
http://stackoverflow.com/questions/393943/when-should-i-explicitly-specify-a-structlayout/394937#3949370Answer by Jonathan C Dickinson for When should I explicitly specify a StructLayout?Jonathan C Dickinson2008-12-27T12:02:58Z2008-12-27T12:02:58Z<p>I am not entirely sure, but it may affect binary serialization - it might spit out the fields in order with not naming or ordering information (resulting in a smaller file), but that is a complete whim.</p>