Exemplo n.º 1
0
 static void Main(string[] args)
 {
     SmartPhone sp = new SmartPhone();
     Console.WriteLine(sp.battery.PercentualeCarica);
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            SmartPhone sp = new SmartPhone();

            Console.WriteLine(sp.battery.PercentualeCarica);
        }
 internal Battery(SmartPhone phone)
 {
     this.phone = phone;
 }