C# Class SupermarketQueue, TelerikAcademy

Show file Open project: vladislav-karamfilov/TelerikAcademy Class Usage Examples

Public Methods

Method Description
Append ( string name ) : void
Find ( string name ) : int
Insert ( int position, string name ) : bool
Serve ( int count ) : IEnumerable

Method Details

Append() public method

public Append ( string name ) : void
name string
return void

Find() public method

public Find ( string name ) : int
name string
return int

Insert() public method

public Insert ( int position, string name ) : bool
position int
name string
return bool

Serve() public method

public Serve ( int count ) : IEnumerable
count int
return IEnumerable