What is marshalling and why do we need it.

I find it hard to believe that i cannot send an int over the wire from c# to c and have to marshall it. Why cant c# just send the 32bits over with a starting and terminating signal, telling C code that it has received an int. If there are any good tutorials or sites about why we need marshalling and how to use it that would be great. Thank you very much

link|improve this question
2  
In fact, you can just send the 32 bits over with a starting and terminating signal. That would be writing your own marshalling for an int. But how would you pass a Dictionary<CustomClassA,List<CustomClassB>> to C code? – Vinko Vrsalovic Feb 10 '10 at 22:29
2  
Endianness comes to mind when you say "over the wire". – sixlettervariables Feb 10 '10 at 22:46
true lets disregard big/little Endian or any other variation. – george9170 Feb 10 '10 at 23:34
7  
This is a bit of an odd question. It's rather like asking "why do we need a postal system, when we could simply have a system where letter carriers pick up correspondance, take it to central locations for sorting, and then deliver it to the addressees?" But... that's a postal system. You ask why we need a marshalling system when instead we could have... a marshalling system. I think I'm missing the point of your question. Can you clarify? – Eric Lippert Feb 11 '10 at 0:41
@Eric, I love your analogies. They are very funny. :) – Joan Venge Feb 11 '10 at 1:16
feedback

4 Answers

up vote 5 down vote accepted

Because different languages and environments have different calling conventions, different layout conventions, different sizes of primitives (cf. char in C# and char in C), different object creation/destruction conventions, and different design guidelines. You need a way to get the stuff out of managed land an into somewhere where unmanaged land can see and understand it and vice versa. That's what marshalling is for.

link|improve this answer
feedback

Marshalling an int is ideally just what you said: copying the memory from the CLR's managed stack into someplace where the C code can see it. Marshalling strings, objects, arrays, and other types are the difficult things.

But the P/Invoke interop layer takes care of almost all of these things for you.

link|improve this answer
feedback

Marshalling is a "medium" for want of a better word or a gateway, to communicate with the unmanaged world's data types and vice versa, by using the pinvoke, and ensures the data is returned back in a safe manner.

Hope this helps, Best regards, Tom.

link|improve this answer
feedback

As Vinko says in the comments, you can pass primitive types without any special marshalling. These are called "blittable" types and include types like byte, short, int, long, etc and their unsigned counterparts.

This page contains the list of blittable and non-blittable types.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown