using System;
public class Dog {
//Fields
string Breed;
string Size;
string Colour;
int AgeInYears;
public Dog(){
Breed = "";
Size = "";
Colour = "";
AgeInYears = 0;
}
void Eat(){
Console.WriteLine("chew");
void Run(){
Console.WriteLine("paws");
void Sleep(){
Console.WriteLine("yawn");
void Name(){
public static void Main(){
Dog Dog1 = new Dog{
Breed = "bulldog",
Size = "large",
Colour = "gray",
AgeInYears = 5
};
Dog Dog2 = new Dog{
Breed = "beagle",
Colour = "orange",
AgeInYears = 6
Dog Dog3 = new Dog{
Breed = "german shepherd",
Colour = "white & orange",