From 3cbe080972584f9828cb35fd3215e1bed4368d67 Mon Sep 17 00:00:00 2001 From: Michael Ghebremussie <michael.ghebremussie@student.reutlingen-university.de> Date: Mon, 12 Dec 2022 15:04:50 +0000 Subject: [PATCH] added a summary in Buffer.cs --- Aufgabe3/ConsoleApplication1/Buffer.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Aufgabe3/ConsoleApplication1/Buffer.cs b/Aufgabe3/ConsoleApplication1/Buffer.cs index 0a9d5f5..cb5d1bc 100644 --- a/Aufgabe3/ConsoleApplication1/Buffer.cs +++ b/Aufgabe3/ConsoleApplication1/Buffer.cs @@ -4,6 +4,11 @@ using System.Threading; 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 { private Queue<Car> carQueue; -- GitLab