public static void Main()
MobilePhone1 bobbie1 = new MobilePhone1("Angie", "iPhone", "6+");
MobilePhone1 katie1 = new MobilePhone1("Katie B.", "Apple", "iPhone 6 Plus");
MobilePhone1 katie2 = new MobilePhone1("Katie S.", "Samsung", "Galaxy");
MobilePhone1 mike1 = new MobilePhone1("Mike", "Samsung", "Edge");
MobilePhone1 billie1 = new MobilePhone1("Billie", "Samsung", "Galaxy");
MobilePhone1 sara1 = new MobilePhone1("Sara", "Apple", "iPhone 6");
MobilePhone1[] listOfMyFriends = new MobilePhone1[6];
listOfMyFriends[0] = bobbie1;
listOfMyFriends[1] = katie1;
listOfMyFriends[2] = katie2;
listOfMyFriends[3] = mike1;
listOfMyFriends[4] = billie1;
listOfMyFriends[5] = sara1;
foreach (var friends in listOfMyFriends)
public MobilePhone1(string name1, string make1, string model1)
public string Name1 { get; set; }
public string Make1 { get; set; }
public string Model1 { get; set; }
public void GivePhone1(){
Console.WriteLine("The type of phone {0} has is a(an) {1} {2}.", this.Name1, this.Make1, this.Model1);