Registriert seit: 8. Mär 2006
Ort: Jüterbog
491 Beiträge
Delphi 12 Athens
|
AW: c# sruct mit string inhalt nach delphi
11. Jan 2022, 13:33
Würde das helfen?
Delphi-Quellcode:
const
cFooBar: array [0..11] of record
Value: string;
ValueOrd: Byte;
end = (
(Value : 'String0'; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : ''; ValueOrd:0),
(Value : 'String11'; ValueOrd:11));
|
|
Zitat
|