I have a Queue object with filenames in it. Under certain circumstances I want to move the item at the beginning of the Queue to the end. Will the following line achieve this?
Code:myFiles.Enqueue(myFiles.Dequeue)
Or is there a better way to do it? Thanks...


Reply With Quote

