Skip to content
Snippets Groups Projects
Commit 3cbe0809 authored by Michael Ghebremussie's avatar Michael Ghebremussie
Browse files

added a summary in Buffer.cs

parent 438b920c
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,11 @@ using System.Threading; ...@@ -4,6 +4,11 @@ using System.Threading;
namespace ConsoleApplication1 namespace ConsoleApplication1
{ {
/// <summary>
/// Creating a Class Buffer that contains a Queue that represent the "Parking lot".
/// The Queue is limited by the size that can manually be setted
/// </summary>
public class Buffer public class Buffer
{ {
private Queue<Car> carQueue; private Queue<Car> carQueue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment