ComponentOne PDF for .NET
CSJ2K.j2k.entropy.decoder Namespace / ByteInputBuffer Class / addByteArray Method
The data to add. The data is copied.
The index, in data, of the first element to add to the stream.
The number of elements to add to the array.

In This Topic
    addByteArray Method (ByteInputBuffer)
    In This Topic
    Adds the specified data to the end of the byte array stream. This method modifies the byte array buffer. It can also discard the already read input.
    Syntax
    'Declaration
     
    
    Public Overridable Sub addByteArray( _
       ByVal data() As Byte, _
       ByVal off As Integer, _
       ByVal len As Integer _
    ) 
    public virtual void addByteArray( 
       byte[] data,
       int off,
       int len
    )

    Parameters

    data
    The data to add. The data is copied.
    off
    The index, in data, of the first element to add to the stream.
    len
    The number of elements to add to the array.
    See Also