C# Class NSoft.NFramework.Nini.Util.OrderedList

Inheritance: IDictionary, ICollection
显示文件 Open project: debop/NFramework Class Usage Examples

Public Methods

Method Description
Add ( object key, object value ) : void
Clear ( ) : void
Contains ( object key ) : bool
CopyTo ( Array array, int index ) : void
CopyTo ( DictionaryEntry array, int index ) : void
GetEnumerator ( ) : IEnumerator
Insert ( int index, object key, object value ) : void
Remove ( object key ) : void
RemoveAt ( int index ) : void
this ( int index ) : 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 index ) : void
array System.Array
index int
return void

CopyTo() public method

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

GetEnumerator() public method

public GetEnumerator ( ) : IEnumerator
return IEnumerator

Insert() public method

public Insert ( int index, object key, object value ) : void
index 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 index ) : void
index int
return void

this() public method

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

this() public method

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