C# Class Irony.Interpreter.DataStack

显示文件 Open project: o2platform/O2.Platform.Projects Class Usage Examples

Public Methods

Method Description
Init ( object unassigned ) : void
Pop ( ) : object
Pop ( int count ) : void
PopUntil ( int toCount ) : void
Push ( object item ) : void
Replace ( int removeCount, object item ) : void
ToString ( ) : string
this ( int index ) : object

Method Details

Init() public method

public Init ( object unassigned ) : void
unassigned object
return void

Pop() public method

public Pop ( ) : object
return object

Pop() public method

public Pop ( int count ) : void
count int
return void

PopUntil() public method

public PopUntil ( int toCount ) : void
toCount int
return void

Push() public method

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

Replace() public method

public Replace ( int removeCount, object item ) : void
removeCount int
item object
return void

ToString() public method

public ToString ( ) : string
return string

this() public method

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