i am unable to parse records with attributes above variant fields, see example below.
unit VariantRecordFieldAttributes;
interface
type
TVariantRecord = record
case byte of
1:(
Value: Double;
[Example]
ValueWithAttribute: Integer;
);
end;
implementation
end.
Hello,
i am unable to parse records with attributes above variant fields, see example below.