| UnmanagedBufferCopy Method (UnmanagedBuffer, Int32, Byte, Int32, Int32) |
Copies data from a buffer to a managed array.
Namespace:
Ookii.Jumbo
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public static void Copy(
UnmanagedBuffer source,
int sourceIndex,
byte[] destination,
int destinationIndex,
int count
)
Public Shared Sub Copy (
source As UnmanagedBuffer,
sourceIndex As Integer,
destination As Byte(),
destinationIndex As Integer,
count As Integer
)
public:
static void Copy(
UnmanagedBuffer^ source,
int sourceIndex,
array<unsigned char>^ destination,
int destinationIndex,
int count
)
static member Copy :
source : UnmanagedBuffer *
sourceIndex : int *
destination : byte[] *
destinationIndex : int *
count : int -> unit
Parameters
- source
- Type: Ookii.JumboUnmanagedBuffer
The UnmanagedBuffer containing the data to copy. - sourceIndex
- Type: SystemInt32
The index in source to start copying at. - destination
- Type: SystemByte
The managed byte array to copy the data to. - destinationIndex
- Type: SystemInt32
The index in destination to start copying at. - count
- Type: SystemInt32
The number of bytes to copy.
See Also