示例#1
0
        public Laptop(string mod, string manu, string proc, int? ram, string gc, string h, string scr, Battery b, double? bl, double p)
        {
            this.Model = mod;
            this.Manufacturer = manu;
            this.Processor = proc;
            this.RAM = ram;
            this.GraphicsCard = gc;
            this.HDD = h;
            this.Screen = scr;
            this.Batt = b;
            this.BattLife = bl;
            this.Price = p;

        }
示例#2
0
        static void Main(string[] args)
        {
            try
            {
                Battery b = new Battery(BatteryType.NiCad, 4, 2550);
                Laptop lap = new Laptop("Lenovo Yoga 2 Pro", "Lenovo", "Intel Core i5-4210U (2-core, 1.70 - 2.70 GHz, 3MB cache)", 8, "Intel HD Graphics 4400", "128GB SSD", "13.3\" (33.78 cm) – 3200 x 1800 (QHD+), IPS sensor display", b, 4.7, 2259.00);
                Laptop lap1 = new Laptop("Asus", 25);

                Console.WriteLine(lap);
                Console.WriteLine(lap1);

            }
            catch (Exception e)
            {
                Console.WriteLine("why?");
            }
        }
示例#3
0
 public Laptop(string mod, string manu, string proc, int?ram, string gc, string h, string scr, Battery b, double?bl, double p)
 {
     this.Model        = mod;
     this.Manufacturer = manu;
     this.Processor    = proc;
     this.RAM          = ram;
     this.GraphicsCard = gc;
     this.HDD          = h;
     this.Screen       = scr;
     this.Batt         = b;
     this.BattLife     = bl;
     this.Price        = p;
 }