C# Class Commons.Collections.KeyedList

Inheritance: ICollection, IDictionary, IEnumerable, IOrderedDictionary
Afficher le fichier Open project: nats/castle-1.0.3-mono

Méthodes publiques

Méthode Description
Add ( object key, object value ) : void
Clear ( ) : void
Contains ( object key ) : bool
CopyTo ( Array array, int idx ) : void
Insert ( int idx, object key, object value ) : void
Remove ( object key ) : void
RemoveAt ( int idx ) : void
this ( int idx ) : object
this ( object key ) : object

Private Methods

Méthode Description
IDictionary ( ) : IDictionaryEnumerator
IEnumerable ( ) : IEnumerator
IndexOf ( object key ) : int

Method Details

Add() public méthode

public Add ( object key, object value ) : void
key object
value object
Résultat void

Clear() public méthode

public Clear ( ) : void
Résultat void

Contains() public méthode

public Contains ( object key ) : bool
key object
Résultat bool

CopyTo() public méthode

public CopyTo ( Array array, int idx ) : void
array System.Array
idx int
Résultat void

Insert() public méthode

public Insert ( int idx, object key, object value ) : void
idx int
key object
value object
Résultat void

Remove() public méthode

public Remove ( object key ) : void
key object
Résultat void

RemoveAt() public méthode

public RemoveAt ( int idx ) : void
idx int
Résultat void

this() public méthode

public this ( int idx ) : object
idx int
Résultat object

this() public méthode

public this ( object key ) : object
key object
Résultat object