Marshaling – what is it and why do we need it?

后端 未结 6 1767
抹茶落季
抹茶落季 2020-12-12 12:14

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 c

相关标签:
6条回答
  • 2020-12-12 12:23

    .NET code(C#, VB) is called "managed" because it's "managed" by CLR (Common Language Runtime)

    If you write code in C or C++ or assembler it is all called "unmanaged", since no CLR is involved. You are responsible for all memory allocation/de-allocation.

    Marshaling is the process between managed code and unmanaged code; It is one of the most important services offered by the CLR.

    0 讨论(0)
  • 2020-12-12 12:27

    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.

    0 讨论(0)
  • 2020-12-12 12:32

    Marshalling is passing signature of a function to a different process which is on a different machine, and it is usually implemented by conversion of structured data to a dedicated format, which can be transferred to other processor systems (serialization / deserialization).

    0 讨论(0)
  • 2020-12-12 12:35

    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.

    0 讨论(0)
  • 2020-12-12 12:35

    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.

    0 讨论(0)
  • 2020-12-12 12:45

    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.

    0 讨论(0)
提交回复
热议问题