P
pengdh
Unregistered / Unconfirmed
GUEST, unregistred user!
例如
一个结构:
TTextFont = packed record
Charset: TFontCharset;
Color: TColor;
Height: Integer;
Name: TFontName;
Pitch: TFontPitch;
Size: Integer;
Style: TFontStyles;
end;
如何串行化成一个字符串,就像Watch调试窗口时出现的
TextFont: (245, 20250642, 12, '', (out of bound) 64, 1115730944, [])
中的字符串,以及得到该字符串后如何复原到TextFont(即反串行化)
一个结构:
TTextFont = packed record
Charset: TFontCharset;
Color: TColor;
Height: Integer;
Name: TFontName;
Pitch: TFontPitch;
Size: Integer;
Style: TFontStyles;
end;
如何串行化成一个字符串,就像Watch调试窗口时出现的
TextFont: (245, 20250642, 12, '', (out of bound) 64, 1115730944, [])
中的字符串,以及得到该字符串后如何复原到TextFont(即反串行化)