C# Class System.Collections.ArrayList.IListWrapper

Inheritance: ArrayList
Show file Open project: dotnet/corefx

Public Methods

Method Description
Add ( Object obj ) : int
AddRange ( ICollection c ) : void
BinarySearch ( int index, int count, Object value, IComparer comparer ) : int
Clear ( ) : void
Clone ( ) : Object
Contains ( Object obj ) : bool
CopyTo ( Array array, int index ) : void
CopyTo ( int index, Array array, int arrayIndex, int count ) : void
GetEnumerator ( ) : IEnumerator
GetEnumerator ( int index, int count ) : IEnumerator
GetRange ( int index, int count ) : ArrayList
IndexOf ( Object value ) : int
IndexOf ( Object value, int startIndex, int count ) : int
Insert ( int index, Object obj ) : void
InsertRange ( int index, ICollection c ) : void
LastIndexOf ( Object value ) : int
Remove ( Object value ) : void
RemoveAt ( int index ) : void
RemoveRange ( int index, int count ) : void
Reverse ( int index, int count ) : void
SetRange ( int index, ICollection c ) : void
Sort ( int index, int count, IComparer comparer ) : void
ToArray ( ) : Object[]
TrimToSize ( ) : void
this ( int index ) : Object

Private Methods

Method Description
IListWrapper ( IList list ) : System.Security
IndexOf ( Object value, int startIndex ) : int
LastIndexOf ( Object value, int startIndex ) : int
LastIndexOf ( Object value, int startIndex, int count ) : int
ToArray ( Type type ) : Array

Method Details

Add() public method

public Add ( Object obj ) : int
obj Object
return int

AddRange() public method

public AddRange ( ICollection c ) : void
c ICollection
return void

BinarySearch() public method

public BinarySearch ( int index, int count, Object value, IComparer comparer ) : int
index int
count int
value Object
comparer IComparer
return int

Clear() public method

public Clear ( ) : void
return void

Clone() public method

public Clone ( ) : Object
return Object

Contains() public method

public Contains ( Object obj ) : bool
obj 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 ( int index, Array array, int arrayIndex, int count ) : void
index int
array System.Array
arrayIndex int
count int
return void

GetEnumerator() public method

public GetEnumerator ( ) : IEnumerator
return IEnumerator

GetEnumerator() public method

public GetEnumerator ( int index, int count ) : IEnumerator
index int
count int
return IEnumerator

GetRange() public method

public GetRange ( int index, int count ) : ArrayList
index int
count int
return ArrayList

IndexOf() public method

public IndexOf ( Object value ) : int
value Object
return int

IndexOf() public method

public IndexOf ( Object value, int startIndex, int count ) : int
value Object
startIndex int
count int
return int

Insert() public method

public Insert ( int index, Object obj ) : void
index int
obj Object
return void

InsertRange() public method

public InsertRange ( int index, ICollection c ) : void
index int
c ICollection
return void

LastIndexOf() public method

public LastIndexOf ( Object value ) : int
value Object
return int

Remove() public method

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

RemoveAt() public method

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

RemoveRange() public method

public RemoveRange ( int index, int count ) : void
index int
count int
return void

Reverse() public method

public Reverse ( int index, int count ) : void
index int
count int
return void

SetRange() public method

public SetRange ( int index, ICollection c ) : void
index int
c ICollection
return void

Sort() public method

public Sort ( int index, int count, IComparer comparer ) : void
index int
count int
comparer IComparer
return void

ToArray() public method

public ToArray ( ) : Object[]
return Object[]

TrimToSize() public method

public TrimToSize ( ) : void
return void

this() public method

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