Ok here it goes, i\'m using oracle\'s ContentAccess library in C#, the library is programmed in C.
I use some functions of the library to extract text from diffrent
In C#, there are two ways to pin an object in memory: the fixed statement and GCHandle.Alloc. In your case, I believe you want GCHandle.Alloc.
fixed
GCHandle.Alloc
See GCHandle.Alloc for a code example, and the fixed keyword documentation.