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.
|
feedback
|
|
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. | |||||||
feedback
|
List<>. Now you can simply retrieve the managed reference in the callback from the handle value. – Hans Passant Jul 31 '11 at 13:39