interface IDictionary

in global :: System . Collections

Represents a nongeneric collection of key/value pairs.


public void Add( object key, object value )

Adds an element with the provided key and value to the object.

  • key The to use as the key of the element to add.
  • value The to use as the value of the element to add.

public bool Contains( object key )

Determines whether the object contains an element with the specified key.

  • key The key to locate in the object.
  • Returns if the contains an element with the key; otherwise, .

public bool IsFixedSize { get; }

Gets a value indicating whether the object has a fixed size.

  • Returns if the object has a fixed size; otherwise, .

public bool IsReadOnly { get; }

Gets a value indicating whether the object is read-only.

  • Returns if the object is read-only; otherwise, .

public ICollection Keys { get; }

Gets an object containing the keys of the object.

  • Returns An object containing the keys of the object.

public void Remove( object key )

Removes the element with the specified key from the object.

  • key The key of the element to remove.

public ICollection Values { get; }

Gets an object containing the values in the object.

  • Returns An object containing the values in the object.

public object Item { get; set; }

😔 No documentation found.

public void Clear( )

😔 No documentation found.

public IDictionaryEnumerator GetEnumerator( )

😔 No documentation found.