Skip to content

Instantly share code, notes, and snippets.

@PhiHuyHoang
Created October 3, 2018 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PhiHuyHoang/ef77dc6b1133cf6c9e8bfe79f63dce03 to your computer and use it in GitHub Desktop.
Save PhiHuyHoang/ef77dc6b1133cf6c9e8bfe79f63dce03 to your computer and use it in GitHub Desktop.
class Uyen : GirlFriend, ICloneable
{
public Uyen(string name, string say, string response) : base(name, say, response)
{
}
public object Clone()
{
return this.MemberwiseClone();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment