using System;
// Define the class
public class Dog
{
// Create fields that describe the class
string Breed;
string Size;
string Colour;
string Age;
// Create Constructor
public Dog(string.B,string.S,string.C,string.A)
Breed = B;
Size = S;
Colour = C;
Age = A;
}
// Create Methods that describe the behavior of the class
//void meow()
//{
// Console.WriteLine("Meowww");
//}
public static void Main()
Dog Cleo = new Dog1Object();
//Cleo.meow();