Skip to content

Instantly share code, notes, and snippets.

@DavidArno
Created June 1, 2015 12:45
Show Gist options
  • Save DavidArno/5d734dffe3a23f97781e to your computer and use it in GitHub Desktop.
Save DavidArno/5d734dffe3a23f97781e to your computer and use it in GitHub Desktop.
Simplified cat
public class Cat
{
public string Name { get; set; }
public string Color { get; set; }
public Cat()
{
Cat("Unamed", "gray");
}
public Cat(string name, string color)
{
Name = name;
Color = color;
}
public void SayMiau()
{
Console.WriteLine("Cat {0} says Miau!!!!!!!!!!", Name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment