ConditionalWeakTable<TKey,TValue> Constructor

Definition

Initializes a new instance of the ConditionalWeakTable<TKey,TValue> class.

public:
 ConditionalWeakTable();
public ConditionalWeakTable ();
Public Sub New ()

Remarks

The ConditionalWeakTable<TKey,TValue> constructor instantiates an empty ConditionalWeakTable<TKey,TValue> table; that is, the table contains no key/value pairs. You can add key/value pairs by calling the Add, GetValue, or GetOrCreateValue method.

Every key in a ConditionalWeakTable<TKey,TValue> object must be unique. Keys are not unique if they refer to the same object (that is, if passing them as arguments to the Object.ReferenceEquals method returns true).

Applies to