Registriert seit: 18. Mai 2003
634 Beiträge
|
Record <> String umwandlung
28. Jan 2004, 15:22
Hi ihrs!
Wie schaff ich das möglichst einfach (Pointer???)?
Delphi-Quellcode:
type
TMyRecord = record
x:boolean;
y:boolean;
end;
function RecordToStr(input:TMyRecord):string;
begin
//???
end;
function StrToRecord(input:string):TMyRecord;
begin
//???
end;
Vielen Dank
|