C# Class System.Collections.ArrayList.FixedSizeList

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

Public Methods

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

Private Methods

Method Description
FixedSizeList ( IList l ) : System.Security

Method Details

Add() public method

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

Clear() public method

public Clear ( ) : void
return void

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

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 obj ) : void
index int
obj 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