Bonjour,
System.Runtime.InteropServices.GCHandle gch = System.Runtime.InteropServices.GCHandle.Alloc(TonTableauDeByte,
System.Runtime.InteropServices.GCHandleType.Pinned)
IntPtr pTableauDeByte = gch.
.AddrOfPinnedObject() //Pointeur vers ton tableau de byte.
puis quand tu as finis, n'oublis pas de libérer avec gch.Free()
++