System.SysUtils.TByteArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TByteArray = array [0..32767] of Byte;

C++

typedef System::StaticArray<System::Byte, 32768> TByteArray;

Properties

Type Visibility Source Unit Parent
array
typedef
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

TByteArray declares an array of Bytes.

The TByteArray type declares a static array of Bytes. The array size is of 32,768 (2**15) elements.

Notes:

  • Static arrays such as TByteArray are declared with an immutable size.
  • If you need a larger array of bytes, you can use TByteDynArray .
Retrieved from "https://docwiki.embarcadero.com/Libraries/Tokyo/e/index.php?title=System.SysUtils.TByteArray&oldid=543974"