如何將一個TDictionary內容複製到另一個方法中有單一方法還是簡單方法? 比方說,我有以下聲明有沒有簡單的方法將TDictionary內容複製到另一個?
type
TItemKey = record
ItemID: Integer;
ItemType: Integer;
end;
TItemData = record
Name: string;
Surname: string;
end;
TItems = TDictionary<TItemKey, TItemData>;
var
// the Source and Target have the same types
Source, Target: TItems;
begin
// I can't find the way how to copy source to target
end;
,我想複製1:1的源到目標。有這樣的方法嗎?
謝謝!
+1我使用泛型TDictionary相當多,但不知道這一點。謝謝。 – Justmade 2012-03-20 13:43:23
也從我+1,不知道這個超載,我現在很生氣! -.- – ComputerSaysNo 2012-03-20 13:47:08