Quindi, se voglio passare un elenco per la mia funzione di callback attraverso Winapi Io uso GCHandle
// object to IntPtr (before calling WinApi):
List<string> list1 = new List<string>();
GCHandle handle1 = GCHandle.Alloc(list1);
IntPtr parameter = (IntPtr) handle1;
// call WinAPi and pass the parameter here
// then free the handle when not needed:
handle1.Free();
// back to object (in callback function):
GCHandle handle2 = (GCHandle) parameter;
List<string> list2 = (handle2.Target as List<string>);
list2.Add("hello world");
Thx a David Heffernan
Edit: Come notato nei commenti, è necessario liberare la maniglia dopo l'uso. Inoltre ho usato il casting. Potrebbe essere opportuno utilizzare i metododici statici GCHandle.ToIntPtr(handle1)
e GCHandle.FromIntPtr(parameter)
come here. Non l'ho verificato
Pin utilizzando GCHandle –