C# Class System.Collections.ArrayList.ListWrapper

Inheritance: IList
Show file Open project: runefs/Marvin

Protected Properties

Property Type Description
m_InnerList IList

Public Methods

Method Description
Add ( object value ) : int
Clear ( ) : void
Contains ( object value ) : bool
CopyTo ( Array array, int index ) : void
GetEnumerator ( ) : IEnumerator
IndexOf ( object value ) : int
Insert ( int index, object value ) : void
ListWrapper ( IList innerList ) : System.Runtime.InteropServices
Remove ( object value ) : void
RemoveAt ( int index ) : void
this ( int index ) : object

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 value ) : bool
value 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

ListWrapper() public method

public ListWrapper ( IList innerList ) : System.Runtime.InteropServices
innerList IList
return System.Runtime.InteropServices

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

Property Details

m_InnerList protected property

protected IList m_InnerList
return IList