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