2009. május 15., péntek

How to copy data from a TMemoryStream to a string without using an array of char as buffer


Problem/Question/Abstract:

How to copy data from a TMemoryStream to a string without using an array of char as buffer

Answer:

var
  S: string;
begin
  SetLength(S, MemStream.Size);
  MemStream.Read(S[1], MemStream.Size);
end;

Nincsenek megjegyzések:

Megjegyzés küldése