public static void Main()
Console.WriteLine("Hello World");
static void Main(string[] args)
string [] Dogs = new string [3]
string []breed = {"poodle" "mutt", "
public abstract class Animal
public abstract void run()
public class Dog : Animal
public Dog(string newName, int newType)
this.name = newName = "";
public override void CanSpeak
public override void run()
throw new NotImplementedException();
Console.WriteLine("running");
static class animalsounds
{ public static string woof = "woof";
public interface CanSpeak