In a C# to native lib CLI/C++ wrapper, I have a choice:
- Store native pointer in a managed class (native object is created using native "new")
or
- Store native object as a data blob in a managed class' field, and use
pin_ptr
to pin it before each native use.
Has anyone done any comparative analysis on the relative performance costs of the two paths?
Thanks!
There's probably not much difference. GC allocation is actually slightly faster than native
new
. And pinning is only a performance problem if the object is pinned when the GC does a collection. If the managed object ends up big enough to go into the LOH, then pinning is free.But I haven't measured it myself.
What I wouldn't do is use a GCHandle to keep the object pinned between function calls. That's more expensive to set up than a
pin_ptr
and more likely to impact the GC. For data that needs to stay permanently in place, use the native allocator.