C# Class System.Collections.ArrayList.FixedSizeArrayListWrapper

Inheritance: ArrayListWrapper
Show file Open project: runefs/Marvin

Public Methods

Method Description
Add ( object value ) : int
AddRange ( ICollection c ) : void
Clear ( ) : void
FixedSizeArrayListWrapper ( ArrayList innerList ) : System.Runtime.InteropServices
Insert ( int index, object value ) : void
InsertRange ( int index, ICollection c ) : void
Remove ( object value ) : void
RemoveAt ( int index ) : void
RemoveRange ( int index, int count ) : void
TrimToSize ( ) : void

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

Clear() public method

public Clear ( ) : void
return void

FixedSizeArrayListWrapper() public method

public FixedSizeArrayListWrapper ( ArrayList innerList ) : System.Runtime.InteropServices
innerList ArrayList
return System.Runtime.InteropServices

Insert() public method

public Insert ( int index, object value ) : void
index int
value object
return void

InsertRange() public method

public InsertRange ( int index, ICollection c ) : void
index int
c ICollection
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

RemoveRange() public method

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

TrimToSize() public method

public TrimToSize ( ) : void
return void