var
 a: OleVariant;
 b: TMyRecord;// Server Side
a := VarArrayOf([b.Name, b.Age]);// Client Side
b.Name := a[0];
b.Age := a[1];