Skip to content

Instantly share code, notes, and snippets.

@insightcoder
Last active August 21, 2017 12:26
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 insightcoder/7f665c6f8fe1cb156d48750100227032 to your computer and use it in GitHub Desktop.
Save insightcoder/7f665c6f8fe1cb156d48750100227032 to your computer and use it in GitHub Desktop.
public class Foo : IFoo
{
private IBar _bar;
public Foo()
{
_bar = new Bar();
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment