12
votes
What’s a good way to serialize Delphi object tree to XML--using RTTI and not custom code?
You can use the JVCL TJvAppXMLFileStorage component to serialize TPersistent derived classes.
uses
JvAppXMLStorage;
var
Storage: TJvAppXMLFileStorage;
begin
Storage := TJvApp …
5
votes
Delphi 2010: New RTTI, setting propertyvalue to arbitary value
TValue is not a Variant. You can only read the datatype that "you" put into it.
TValue.Cast doesn't work because it has the same semantic that implicit type casts have. You cannot assign an …
