System.SysUtils.StringOf

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function StringOf(const Bytes: TBytes): UnicodeString;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall StringOf(const System::DynamicArray<System::Byte> Bytes);

Properties

Type Visibility Source Unit Parent
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

Converts a byte array into a Unicode string using the default system locale.

Call StringOf to convert a byte array into a Unicode string. Byte arrays are converted to Unicode strings using the default system locale represented by the Default property of the TEncoding class.

See Also