I want to pass a IntPtr
to a method takes a byte[]
Parameter in c#. Is that possible and if it is possible how can I do that?
thx
I want to pass a IntPtr
to a method takes a byte[]
Parameter in c#. Is that possible and if it is possible how can I do that?
thx
Check out the
Marshal.Copy
method.