IJW: managed proxy struct? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:41:35Z http://stackoverflow.com/feeds/question/878955 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/878955/ijw-managed-proxy-struct 1 IJW: managed proxy struct? galets 2009-05-18T17:46:59Z 2009-05-18T21:25:53Z <p>I am working on porting some C++ code to managed .NET. I will need to retain some C++ code in native form, and trying to use an IJW approach to it. I know it's possible to declare an unmanaged struct so that it will get correctly marshaled to .NET code, but C++ compiler doesn't seem to do it.</p> <p>For example I have this code (managed):</p> <pre><code>struct MyStruct { int some_int; long some_long; }; public ref class Class1 { static MyStruct GetMyStruct() { MyStruct x = { 1, 1 }; return x; } }; </code></pre> <p>It compiles, but when I look at it using reflector, code looks like this:</p> <pre><code>public class Class1 { // Methods private static unsafe MyStruct GetMyStruct() { MyStruct x; *((int*) &amp;x) = 1; *((int*) (&amp;x + 4)) = 1; return x; } } [StructLayout(LayoutKind.Sequential, Size=8), NativeCppClass, MiscellaneousBits(0x41), DebugInfoInPDB] internal struct { } </code></pre> <p>Basically, no fields in MyStruct are visible to .NET. Is there a way to tell C++ compiler to generate ones?</p> <p><strong>When answering, please consider this</strong>: I know how to create a managed class which could be visible to .NET framework. I am NOT interested in doing this. What I want is for the C++ compiler to declare unmanaged struct in a way that .NET will understand it, something like:</p> <pre><code>[StructLayout(LayoutKind::Sequential, blablabla ... )] struct MyStruct { [MarshalAs ....... ] System::Int32 some_int; [MarshalAs ....... ] System::Int32 some_long; }; </code></pre>