C# Class System.Collections.ArrayList.SyncIList

Inheritance: IList, ICollection, IEnumerable
Show file Open project: dotnet/corefx

Public Methods

Method Description
Add ( Object value ) : int
Clear ( ) : void
Contains ( Object item ) : bool
CopyTo ( Array array, int index ) : void
GetEnumerator ( ) : IEnumerator
IndexOf ( Object value ) : int
Insert ( int index, Object value ) : void
Remove ( Object value ) : void
RemoveAt ( int index ) : void
this ( int index ) : Object

Private Methods

Method Description
SyncIList ( IList list ) : System.Security

Method Details

Add() public method

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

Clear() public method

public Clear ( ) : void
return void

Contains() public method

public Contains ( Object item ) : bool
item 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 ( ) : 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

Remove() public method

public Remove ( Object value ) : void
value 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