C# Class Commons.Collections.KeyedList

Inheritance: ICollection, IDictionary, IEnumerable, IOrderedDictionary
显示文件 Open project: nats/castle-1.0.3-mono

Public Methods

Method 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

Method Description
IDictionary ( ) : IDictionaryEnumerator
IEnumerable ( ) : IEnumerator
IndexOf ( object key ) : int

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 idx ) : void
array System.Array
idx int
return void

Insert() public method

public Insert ( int idx, object key, object value ) : void
idx int
key object
value object
return void

Remove() public method

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

RemoveAt() public method

public RemoveAt ( int idx ) : void
idx int
return void

this() public method

public this ( int idx ) : object
idx int
return object

this() public method

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