Clone: IHashtable;
Метод Clone создает копию хеш-таблицы.
Sub Main;
Var
Hash, Hash1: IHashtable;
i: Integer;
Begin
Hash := New Hashtable.Create;
For i := 0 To Math.RandBetweenI(50, 100) Do
Hash.Add("Key_" + i.ToString, "Value " + Math.RandBetweenI(0, 100).ToString);
End For;
Hash1 := Hash.Clone;
Hash.Clear;
End Sub Main;
После выполнения примера в переменной Hash1 будет содержаться копия хеш-таблицы Hash.
См. также: