Unmanaged code calls my functions. In first function I sould pass back pointer to my managet object. Sometimes later some of my othrer functions got called with that same pointer as one of parameters . I sould dereference it use it to perform some calculations and then if it is not neaded dispose of it. To cut the story short I need to pin that object so that GC won't move it til I dispose of it. How to do that in C# ? Thanks in advance.

link|improve this question
2  
Post some code, preferably a minimal, complete example. – Kerrek SB Jul 31 '11 at 12:59
Don't pin. The unmanaged code has no use for the pointer. So don't pass a pointer, pass a 'handle'. Say, an index in a static List<>. Now you can simply retrieve the managed reference in the callback from the handle value. – Hans Passant Jul 31 '11 at 13:39
feedback

1 Answer

To pin an object in C#, you can use GCHandle.Alloc Method with second parameter GCHandleType.Pinned. Object remains pinned until GCHandle instance is released using GCHandle.Free Method.

link|improve this answer
GCHandle won't work becuse my object is not blittable – apaka Jul 31 '11 at 14:06
It works like a charm when you use GCHandle.Aloc(object value) and cast it to IntPtr. – apaka Jul 31 '11 at 18:33
@apaka: GCHandle.Alloc(object_value, GCHandleType.Pinned) + GCHandle.AddrOfPinnedObject. – Alex Farber Jul 31 '11 at 18:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.