Hashtable: Clone

Clone

Creates a shallow copy of the Hashtable.



 Public Function Clone ( ) As Hashtable

Return Values

Hashtable -  A shallow copy of the Hashtable.

Remarks

A shallow copy of a collection copies only the elements of the collection, whether they are reference types or value types, but it does not copy the objects that the references refer to. The references in the new collection point to the same objects that the references in the original collection point to.

In contrast, a deep copy of a collection copies the elements and everything directly or indirectly referenced by the elements.

The Hashtable clone has the same count, the same capacity, the same IEqualityComparer implementation, and the same IComparer implementation as the original Hashtable.

This method is an O(n) operation, where n is Count.

See Also

Project CorLib Overview

Class Hashtable Overview

CopyTo