TList<string>
、TList<Double>
、TList<Integer>
またはのような一般的なリストを解放しますか? TList<TMyRecord>
whereTMyRecord
は次のように宣言されています:
type
TMyRecord = record
MyString: string;
MyDouble: Double;
MyInteger: Integer;
end;
追加の作業が必要ですか、それともMyList.Free
十分ですか?