Greetings.
In C#: If I have an int[] array declared like this
int[] array = new array[size];
there is an way to get the IntPtr from
Use unsafe code, like this:
unsafe { fixed (int* pArray = array) { IntPtr intPtr = new IntPtr((void *) pArray); } }