Beispiel #1
0
        static void Main(string[] args)
        {
            NoteBook note = new NoteBook("Wolkswagen", "WW, GmbH", 50000);

            note.Print();

            Console.WriteLine(note.Manufacturer);

            Console.ReadKey();
        }