using System;
// Define the class
public class Dog
{
// Create fields that describe the class
string Breed;
string Size;
string Color;
string Age;
// Create Constructor
public Dog()
Breed = "Bulldog";
Size = "Large";
Color = "Brown";
Age = "7";
}
// Create Methods that describe the behavior of the class
void Chloe()
Console.WriteLine("Chloe, the big Bulldog is large, brown, and 7");
Console.WriteLine("Joe, the beagle is large, orange, and 6");
Console.WriteLine("Joey, the German Shepherd is large, white & orange, and 6");
public static void Main()
Dog Chlo = new Dog();
Chlo.Chloe();