C# Class System.Collections.ArrayList.SyncArrayList

Inheritance: ArrayList
Show file Open project: dotnet/corefx

Public Methods

Method Description
Add ( Object value ) : int
AddRange ( ICollection c ) : void
BinarySearch ( Object value ) : int
BinarySearch ( Object value, IComparer comparer ) : int
Clear ( ) : void
Clone ( ) : Object
Contains ( Object item ) : bool
CopyTo ( Array array ) : void
CopyTo ( Array array, int index ) : void
GetEnumerator ( ) : IEnumerator
IndexOf ( Object value ) : int
Insert ( int index, Object value ) : void
LastIndexOf ( Object value ) : int
Remove ( Object value ) : void
RemoveAt ( int index ) : void
Sort ( ) : void
Sort ( IComparer comparer ) : void
ToArray ( ) : Object[]
TrimToSize ( ) : void
this ( int index ) : Object

Private Methods

Method Description
BinarySearch ( int index, int count, Object value, IComparer comparer ) : int
CopyTo ( int index, Array array, int arrayIndex, int count ) : void
GetEnumerator ( int index, int count ) : IEnumerator
GetRange ( int index, int count ) : ArrayList
IndexOf ( Object value, int startIndex ) : int
IndexOf ( Object value, int startIndex, int count ) : int
InsertRange ( int index, ICollection c ) : void
LastIndexOf ( Object value, int startIndex ) : int
LastIndexOf ( Object value, int startIndex, int count ) : int
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
SyncArrayList ( ArrayList list ) : System.Security
ToArray ( Type type ) : Array

Method Details

Add() public method

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

AddRange() public method

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

BinarySearch() public method

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

BinarySearch() public method

public BinarySearch ( Object value, IComparer comparer ) : 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 item ) : bool
item Object
return bool

CopyTo() public method

public CopyTo ( Array array ) : void
array System.Array
return void

CopyTo() public method

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

GetEnumerator() public method

public GetEnumerator ( ) : IEnumerator
return IEnumerator

IndexOf() public method

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

Insert() public method

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

Sort() public method

public Sort ( ) : void
return void

Sort() public method

public Sort ( IComparer comparer ) : void
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