Delphi Saving/Loading Dynamic Arrays Failed
问题 I think this will look like ' do my homework ' kind of a question, but I'm still at the ' copy code, use it and try to understand it ' phase, and this is the most active thing I know of for posting questions of this theme. I have a record: type Card = record Name: string; Up,Right,Left,Down,Mark: Single; IDNumber: Integer; end; And array of that record: var ArrayCard: array of Card; And I wanted to know how can a dynamic array of this kind be stored/loaded to/from a file. Tried using this