/******************************************************************************** Copyright 2008 Rick Miller and Pulp Free Press - All Rights Reserved The source code contained within this file is intended for educational purposes only. No warranty as to the quality of the code is expressed or implied. Feel free to use this code provided you include the copyright notice in its entirety. **********************************************************************************/ using System; using System.IO; using System.Xml; using System.Xml.Serialization; public class MainApp { public static void Main(String[] args){ /*********************************************** Create an array of Dogs and populate ***********************************************/ Dog[] dog_array = new Dog[3]; dog_array[0] = new Dog("Rick Miller", new DateTime(1965, 07, 08)); dog_array[1] = new Dog("Coralie Powell", new DateTime(1973, 08, 10)); dog_array[2] = new Dog("Kyle Miller", new DateTime(1990, 05, 01)); /********************************************** Iterate over the dog_array and print values **********************************************/ Console.WriteLine("-----Original Dog Array Contents---------------------"); for(int i = 0; i