When should I explicitly specify a StructLayout? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:19:40Z http://stackoverflow.com/feeds/question/393943 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/393943/when-should-i-explicitly-specify-a-structlayout 0 When should I explicitly specify a StructLayout? biozinc 2008-12-26T16:25:01Z 2008-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#393964 3 Answer by nobugz for When should I explicitly specify a StructLayout? nobugz 2008-12-26T16:41:45Z 2008-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#394937 0 Answer by Jonathan C Dickinson for When should I explicitly specify a StructLayout? Jonathan C Dickinson 2008-12-27T12:02:58Z 2008-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>