C# how to get Byte[] from IntPtr

I have a .dll(not my own) that has a delegate. This delegate Callback function is: "CallBackFN(ushort opCOde, IntPtr payload, uint size, uint localIP)" How can i convert IntPtr to Byte[]? I thin...