Tagged Questions

2
votes
2answers
798 views

How do I marshall a recursive struct to c sharp?

I have an unmanaged struct I'd like to marshal to c sharp that looks basically like this: struct MyStruct{ /* ... some stuff ... */ int numChilds; MyStruct *childs; } I believe that ...