Skip to content

Instantly share code, notes, and snippets.

@NeelBhatt
Created June 9, 2020 18:00
Show Gist options
  • Save NeelBhatt/4768c5f9fcc1188d4420941556e104f0 to your computer and use it in GitHub Desktop.
Save NeelBhatt/4768c5f9fcc1188d4420941556e104f0 to your computer and use it in GitHub Desktop.
class Bar : IBar {
// ...
}class Foo {
private readonly IBar _bar;
public Foo(IBar bar) {
_bar = bar;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment