CByteArray | Constructs an empty array for bytes. |
GetSize | Gets number of elements in this array. | |
GetUpperBound | Returns the largest valid index. | |
SetSize | Sets the number of elements to be contained in this array. |
FreeExtra | Frees all unused memory above the current upper bound. | |
RemoveAll | Removes all the elements from this array. |
GetAt | Returns the value at a given index. | |
SetAt | Sets the value for a given index; array not allowed to grow. | |
ElementAt | Returns a temporary reference to the byte within the array. |
SetAtGrow | Sets the value for a given index; grows the array if necessary. | |
Add | Adds an element to the end of the array. |
InsertAt | Inserts an element at a specified index. | |
RemoveAt | Removes an element at a specific index. |
operator [] | Sets or gets the element at the specified index. |