Skip to content

Instantly share code, notes, and snippets.

@anupavanm
Created April 15, 2018 20:28
Show Gist options
  • Save anupavanm/c0f2d1933d31fca1ff5f0c5cc5cb7407 to your computer and use it in GitHub Desktop.
Save anupavanm/c0f2d1933d31fca1ff5f0c5cc5cb7407 to your computer and use it in GitHub Desktop.
class Sheep
{
public string Name { get; set; }
public string Category { get; set; }
public Sheep(string name, string category)
{
Name = name;
Category = category;
}
public Sheep Clone()
{
return MemberwiseClone() as Sheep;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment