queue
Let’s Create, .NET! Project ATM Part 6 – Add a log feature
For this purpose we’ll use a simple queue but there are many other options in creating a log feature. First create the Queue. Now update the Balance property to log when the value is set. Finally we’ll create a method to return the log when called. Let’s jump back into the program and add a […]
1 min read
Working with Queues in .NET Part 2 – Dequeue and peek at elements
Now it’s time to read from our queue. Time to run the app! Great! Now add a peek to the queue and run the app again.
1 min read
Working with Queues in .NET
Create the Queue and add elements Dequeue and peek at elements
1 min read
Working with Queues in .NET Part 1 – Create the Queue and add elements
So let’s create and test Queues from here. First create the Queue. Next enque three elements to the end of the queue. Great work! In the next post we’ll look at the elements in the Queue!
1 min read
You must be logged in to post a comment.