Exemple #1
0
        static void Main(string[] args)
        {
            Notebook notebook1 = new Notebook("Qwe", "Asd", 100);
            notebook1.Show();

            Console.ReadKey();
        }
Exemple #2
0
 static void Main(string[] args)
 {
     Notebook notebook = new Notebook("Macbook Air", "Apple", 1000.50);
     notebook.Display();
     Console.ReadLine();
 }