diff --git a/Aufgabe3/ConsoleApplication1/Buffer.cs b/Aufgabe3/ConsoleApplication1/Buffer.cs index 0a9d5f5a819261f1ebdacd8b1556d83a65dfcaf7..cb5d1bce6dc66385bee08b9278ef5b14f592bb80 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;