C# Class LumiSoft.Net._FixedStack

Fixed Stack, last-in-first-out. Fix me: this isn't Stack, this is Queue.
Show file Open project: jeske/StepsDB-alpha Class Usage Examples

Public Methods

Method Description
ContainsTerminator ( ) : bool

Check if stack contains terminator.

Push ( byte bytes, int count ) : int

Pushes new bytes to stack.(Last in, first out).

_FixedStack ( string terminator ) : System

Terminator holder and checker stack.

Method Details

ContainsTerminator() public method

Check if stack contains terminator.
public ContainsTerminator ( ) : bool
return bool

Push() public method

Pushes new bytes to stack.(Last in, first out).
public Push ( byte bytes, int count ) : int
bytes byte
count int Count to push from bytes parameter
return int

_FixedStack() public method

Terminator holder and checker stack.
public _FixedStack ( string terminator ) : System
terminator string
return System