Skip to content

Instantly share code, notes, and snippets.

@carmeleve
Created October 7, 2020 09:49
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/2140f6ae6ac1a496b11105517f15d13e to your computer and use it in GitHub Desktop.
Save carmeleve/2140f6ae6ac1a496b11105517f15d13e to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Text;
namespace DesignPatterns.Adapter
{
public class Triceratops
{
public TriceratopsEgg LayEgg()
{
return new TriceratopsEgg();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment