Here you go |
| Vaibhav Gadodia replied to Jobi K John at 08-May-08 01:12 |
As peter said, by definition a queue is a FIFO data structure.
You can use the built-in Queue class: System.Collections.Queue or System.Collections.Generic.Queue (if you want to use Generics)...
Here's the MSDN link which should tell you how to use it: http://msdn.microsoft.com/en-us/library/system.collections.queue.aspx
|
|