Buffer
This class provides methods for copying manipulating arrays as byte arrays.
Remarks
Any array that is used in these methods are treated as byte arrays. No attention
is paid to the type of the original array. They are manipulated as bytes.
Usage:
This class cannot be instantiated. It represents a set of static methods that
are accessed through the name of the class; Buffer.*
Buffer.BlockCopy srcArray, sourceindex, dstArray, destinationindex, Count
See Also
Project VBCorLib Overview
Public:
Methods:
| Name | Description |
|---|
BlockCopy |
Copies the bytes from the source array to the destination array.
|
ByteLength |
Returns the length of the array in bytes.
|
GetByte |
Returns a the byte value at the given byte index within an array.
|
SetByte |
Sets the byte value at a given byte index within the array.
|