예제 #1
0
        static void Main(string[] args)
        {
            MobilePhone myPhone = new MobilePhone("Apple", "Iphone 6", "Paul");

            myPhone.PrintToScreen();
            Console.ReadLine();
        }
예제 #2
0
        static void Main(string[] args)
        {
            MobilePhone devan  = new MobilePhone("Devan", "iPhone", "6s Plus");
            MobilePhone steve  = new MobilePhone("Steve", "LG", "V20");
            MobilePhone stuart = new MobilePhone("Stuart", "iPhone", "7 Plus");
            MobilePhone karli  = new MobilePhone("Karli", "iPhone", "7");
            MobilePhone dustin = new MobilePhone("Dustin", "Samsung", "S7");

            Console.ReadLine();
        }
예제 #3
0
        static void Main(string[] args)
        {
            MobilePhone friend1 = new MobilePhone("iPhone", "6s+", "Mikeale");
            MobilePhone friend2 = new MobilePhone("Galexy", "s", "John");
            MobilePhone friend3 = new MobilePhone("iPhone", "7", "Fin");
            MobilePhone friend4 = new MobilePhone("LG", "razor", "Zanado");
            MobilePhone friend5 = new MobilePhone("iPhone", "6", "James");

            friend1.PrintToScreen();
            friend2.PrintToScreen();
            friend3.PrintToScreen();
            friend4.PrintToScreen();
            friend5.PrintToScreen();

            Console.ReadLine();
        }
예제 #4
0
        static void Main(string[] args)
        {
            MobilePhone Phone1 = new MobilePhone("Apple", "iPhone 6", "Daniel");

            Phone1.PrintToScreen();
        }
예제 #5
0
        static void Main(string[] args)
        {
            MobilePhone myPhone = new MobilePhone("Apple", "iPhone 6s");

            myPhone.PrintToScreen();
        }