C# Class Tests.Collections.Implementations.DictionaryImpl

Inheritance: IDictionary
Mostra file Open project: mikeobrien/Bender

Public Methods

Method Description
Add ( object key, object value ) : void
Clear ( ) : void
Contains ( object key ) : bool
CopyTo ( Array array, int index ) : void
DictionaryImpl ( ) : System
DictionaryImpl ( IDictionary dictionary ) : System
GetEnumerator ( ) : IDictionaryEnumerator
Remove ( object key ) : void
this ( object key ) : object

Private Methods

Method Description
IEnumerable ( ) : IEnumerator

Method Details

Add() public method

public Add ( object key, object value ) : void
key object
value object
return void

Clear() public method

public Clear ( ) : void
return void

Contains() public method

public Contains ( object key ) : bool
key object
return bool

CopyTo() public method

public CopyTo ( Array array, int index ) : void
array System.Array
index int
return void

DictionaryImpl() public method

public DictionaryImpl ( ) : System
return System

DictionaryImpl() public method

public DictionaryImpl ( IDictionary dictionary ) : System
dictionary IDictionary
return System

GetEnumerator() public method

public GetEnumerator ( ) : IDictionaryEnumerator
return IDictionaryEnumerator

Remove() public method

public Remove ( object key ) : void
key object
return void

this() public method

public this ( object key ) : object
key object
return object