Click or drag to resize

UnmanagedBufferCopy Method (Byte, Int32, UnmanagedBuffer, Int32, Int32)

Copies data from a managed array to the buffer.

Namespace:  Ookii.Jumbo
Assembly:  Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax
public static void Copy(
	byte[] source,
	int sourceIndex,
	UnmanagedBuffer destination,
	int destinationIndex,
	int count
)

Parameters

source
Type: SystemByte
The managed byte array containing the data to copy.
sourceIndex
Type: SystemInt32
The index in source to start copying at.
destination
Type: Ookii.JumboUnmanagedBuffer
The UnmanagedBuffer 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