C# Class Rhino.ObjArray

ファイルを表示 Open project: hazzik/Rhino.Net Class Usage Examples

Public Methods

Method Description
Add ( int index, object value ) : void
Add ( object value ) : void
Clear ( ) : void
Get ( int index ) : object
IndexOf ( object obj ) : int
IsEmpty ( ) : bool
IsSealed ( ) : bool
LastIndexOf ( object obj ) : int
ObjArray ( ) : System
Peek ( ) : object
Pop ( ) : object
Push ( object value ) : void
Remove ( int index ) : void
Seal ( ) : void
Set ( int index, object value ) : void
SetSize ( int newSize ) : void
Size ( ) : int
ToArray ( ) : object[]
ToArray ( object array ) : void
ToArray ( object array, int offset ) : void

Private Methods

Method Description
EnsureCapacity ( int minimalCapacity ) : void
GetImpl ( int index ) : object
OnEmptyStackTopRead ( ) : Exception
OnInvalidIndex ( int index, int upperBound ) : Exception
OnSeledMutation ( ) : Exception
ReadObject ( ObjectInputStream @is ) : void
SetImpl ( int index, object value ) : void
WriteObject ( ObjectOutputStream os ) : void

Method Details

Add() public method

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

Add() public method

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

Clear() public method

public Clear ( ) : void
return void

Get() public method

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

IndexOf() public method

public IndexOf ( object obj ) : int
obj object
return int

IsEmpty() public method

public IsEmpty ( ) : bool
return bool

IsSealed() public method

public IsSealed ( ) : bool
return bool

LastIndexOf() public method

public LastIndexOf ( object obj ) : int
obj object
return int

ObjArray() public method

public ObjArray ( ) : System
return System

Peek() public method

public Peek ( ) : object
return object

Pop() public method

public Pop ( ) : object
return object

Push() public method

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

Remove() public method

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

Seal() public method

public Seal ( ) : void
return void

Set() public method

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

SetSize() public method

public SetSize ( int newSize ) : void
newSize int
return void

Size() public method

public Size ( ) : int
return int

ToArray() public method

public ToArray ( ) : object[]
return object[]

ToArray() public method

public ToArray ( object array ) : void
array object
return void

ToArray() public method

public ToArray ( object array, int offset ) : void
array object
offset int
return void