What is the best way to convert an array of bytes declared as TBytes to a unicode string in Delphi 2009? In my particular case, the TBytes array has UTF-16 encoded data alre
I ended up using
TEncoding.Unicode.GetString( MyByteArray );