(Gast)
n/a Beiträge
|
Re: Filestream, string anhängen
17. Jan 2008, 00:19
Delphi-Quellcode:
if s <> '' then
fs.Write(s[1], length(s));
alternativ
Delphi-Quellcode:
if s <> '' then
fs.Write(PChar(s)^, length(s));
alternativ
Delphi-Quellcode:
if s <> '' then
fs.Write(Pointer(s)^, length(s));
|
|
Zitat
|