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
StringOf converts TBytes to a UnicodeString. BytesOf converts a UnicodeString to TBytes.