TypedCArray Constructor Method

Initializes a new instance of the TypedCArray class

public TypedCArray(

long size

);

 

Remarks

This method calls the construtor of TypedBuffer to allocated an unmanaged typed buffer of type “CARRAY” with a size specified by argument size

 

TypedCArray.GetBytes Method

Copies a specified number of bytes from the start of the buffer in this instance to an array of bytes.

public int GetBytes(

byte[] bytes

);

public int GetBytes(

byte[] bytes,

int len

);

 

Remarks

TypedCArray.GetLength Method

Gets the actual number of bytes that are stored in this buffer.

public long GetLength( );

 

Remarks

TypedCArray.PutBytes Method

Copies a specified number of bytes from an array of bytes to the start of the buffer.

public int PutBytes(

byte[] bytes

);

public int PutBytes(

byte[] bytes,

int len

);

 

Remarks