Most voted "marshalling" questions
Marshalling is the process of transforming the memory representation of an object into a compatible data format for storage or transmission, and is used when data needs to be moved between different parts of an application or from one application to another.
Learn more…2 questions
Sort by count of
-
4
votes1
answer1187
viewsWhat is marshalling and how does it work?
I’ve been working with a device that I sent to my software some information, but this information came in the type IntPtr, to read them, I had to use the class Marshal of . NET. What is marshalling…
-
2
votes1
answer86
viewsWhat the hell is marshaling?
Whenever I see signatures of P/Invoke full of Marshaling attributes I always remove one by one and testing if this causes any error, most of the time I end up with a signature with no attribute, no…