Method MoveMemoryWithInvertEndian32
MoveMemoryWithInvertEndian32(void*, void*, uint, bool)
Copies bytes from the source address to the destination address in reversed 4-byte chunks.
Declaration
public static void MoveMemoryWithInvertEndian32(void* dest, void* src, uint size, bool swap)
Parameters
| Type | Name | Description |
|---|---|---|
| void* | dest | The unmanaged pointer corresponding to the destination address to copy to. |
| void* | src | The unmanaged pointer corresponding to the source address to copy from. |
| uint | size | The number of bytes to copy. |
| bool | swap | Whether to swap the source address and destination address. |
MoveMemoryWithInvertEndian32(uint*, uint*, uint)
Copies bytes from the source address to the destination address in reversed 4-byte chunks.
Declaration
public static void MoveMemoryWithInvertEndian32(uint* dest, uint* src, uint size)
Parameters
| Type | Name | Description |
|---|---|---|
| uint* | dest | The unmanaged pointer corresponding to the destination address to copy to. |
| uint* | src | The unmanaged pointer corresponding to the source address to copy from. |
| uint | size | The number of bytes to copy. |