System.SysUtils.WideStringOf

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function WideStringOf(const Value: TBytes): UnicodeString;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall WideStringOf(const System::DynamicArray<System::Byte> Value);

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 Unicode locale.

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

See Also