Copies data from one memory location to another using an unmanaged memory pointers. Uses low-level platform impl. The source location. The destination location. The length (amount of bytes to copy).
(IntPtr source, IntPtr destination, int length)
| 24 | /// <param name="destination">The destination location.</param> |
| 25 | /// <param name="length">The length (amount of bytes to copy).</param> |
| 26 | [Obsolete("Use MemoryCopy with long length and source/destination parameters swapped instead")] |
| 27 | public static void MemoryCopy(IntPtr source, IntPtr destination, int length) |
| 28 | { |
| 29 | // [Deprecated on 30.05.2021, expires on 30.05.2022] |
| 30 | MemoryCopy(destination, source, (ulong)length); |
| 31 | } |
| 32 | |
| 33 | /// <summary> |
| 34 | /// Copies data from one memory location to another using an unmanaged memory pointers. |
no outgoing calls
no test coverage detected