Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            DogOwner person1 = new DogOwner("Olivia", "rudan", "93838");

            Console.WriteLine(Dog.GetDogs());
            Console.ReadLine();
        }
Ejemplo n.º 2
0
        public Dog(string name, string colour, DogOwner owner)
        {
            this.Name   = name;
            this.Colour = colour;
            this.Owner  = owner;

            nrOfDogs++;
        }