V
vb newbie
I need to copy the contents of one byte array to another one. I was
hoping to do it quickly uisng the CopyMemory api call. However, I'm
getting:
FatalExecutionEngineError was detected
Message: The runtime has encountered a fatal error. The address of the
error was at 0x7f47f8e4, on thread 0x12c4. The error code is
0xc0000005. This error may be a bug in the CLR or in the unsafe or
non-verifiable portions of user code. Common sources of this bug
include user marshaling errors for COM-interop or PInvoke, which may
corrupt the stack.
How do you set things up in order to do the copy? I suspect it might
involve the 'managed' feature, but I'm not yet sure exactly how that
works...
hoping to do it quickly uisng the CopyMemory api call. However, I'm
getting:
FatalExecutionEngineError was detected
Message: The runtime has encountered a fatal error. The address of the
error was at 0x7f47f8e4, on thread 0x12c4. The error code is
0xc0000005. This error may be a bug in the CLR or in the unsafe or
non-verifiable portions of user code. Common sources of this bug
include user marshaling errors for COM-interop or PInvoke, which may
corrupt the stack.
How do you set things up in order to do the copy? I suspect it might
involve the 'managed' feature, but I'm not yet sure exactly how that
works...