C# Class System.Collections.SortedList.SyncSortedList

Inheritance: SortedList
Show file Open project: dotnet/corefx

Public Methods

Method Description
Add ( Object key, Object value ) : void
Clear ( ) : void
Clone ( ) : Object
Contains ( Object key ) : bool
ContainsKey ( Object key ) : bool
ContainsValue ( Object key ) : bool
CopyTo ( Array array, int index ) : void
GetEnumerator ( ) : IDictionaryEnumerator
GetKeyList ( ) : IList
GetValueList ( ) : IList
IndexOfKey ( Object key ) : int
Remove ( Object key ) : void
TrimToSize ( ) : void
this ( Object key ) : Object

Private Methods

Method Description
GetByIndex ( int index ) : Object
GetKey ( int index ) : Object
IndexOfValue ( Object value ) : int
RemoveAt ( int index ) : void
SetByIndex ( int index, Object value ) : void
SyncSortedList ( SortedList list ) : System.Diagnostics
ToKeyValuePairsArray ( ) : System.Collections.KeyValuePairs[]

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

Clone() public method

public Clone ( ) : Object
return Object

Contains() public method

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

ContainsKey() public method

public ContainsKey ( Object key ) : bool
key Object
return bool

ContainsValue() public method

public ContainsValue ( Object key ) : bool
key Object
return bool

CopyTo() public method

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

GetEnumerator() public method

public GetEnumerator ( ) : IDictionaryEnumerator
return IDictionaryEnumerator

GetKeyList() public method

public GetKeyList ( ) : IList
return IList

GetValueList() public method

public GetValueList ( ) : IList
return IList

IndexOfKey() public method

public IndexOfKey ( Object key ) : int
key Object
return int

Remove() public method

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

TrimToSize() public method

public TrimToSize ( ) : void
return void

this() public method

public this ( Object key ) : Object
key Object
return Object