Skip to content

Instantly share code, notes, and snippets.

@carmeleve
Last active October 7, 2020 10:19
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 carmeleve/4300f5d8eec458cd5e5e73dfa36a178a to your computer and use it in GitHub Desktop.
Save carmeleve/4300f5d8eec458cd5e5e73dfa36a178a to your computer and use it in GitHub Desktop.
namespace DesignPatterns.Adapter
{
public class TriceratopsEgg
{
public IChild Hatch()
{
return new TriceratopsChild();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment