System.Types.TByteDynArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TByteDynArray = array of Byte;

Properties

Type Visibility Source Unit Parent
array public System.Types.pas System.Types System.Types

Description

Defines an array of byte elements.

TByteDynArray defines a dynamic array of byte elements. You must use SetLength to allocate storage for such an array.

TByteDynArray uses dynamically allocated memory and can exceed the allocated size limitation inherent in TByteArray.

See Also