C# Class Castle.Core.Internal.LinkedList

Inheritance: IList
Show file Open project: nats/castle-1.0.3-mono Class Usage Examples

Public Methods

Method Description
Add ( object value ) : int
AddFirst ( object value ) : void
AddLast ( 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
LinkedList ( ) : System
Remove ( object value ) : void
RemoveAt ( int index ) : void
Replace ( object old, object value ) : bool
ToArray ( Type type ) : Array
this ( int index ) : object

Private Methods

Method Description
GetNode ( int index ) : LinkNode

Returns the node at the specified index.

ValidateIndex ( int index ) : void

Validates the specified index.

Method Details

Add() public method

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

AddFirst() public method

public AddFirst ( object value ) : void
value object
return void

AddLast() public method

public AddLast ( 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

LinkedList() public method

public LinkedList ( ) : System
return System

Remove() public method

public Remove ( object value ) : void
value object
return void

RemoveAt() public method

public RemoveAt ( int index ) : void
index int
return void

Replace() public method

public Replace ( object old, object value ) : bool
old object
value object
return bool

ToArray() public method

public ToArray ( Type type ) : Array
type System.Type
return System.Array

this() public method

public this ( int index ) : object
index int
return object