Skip to content

Instantly share code, notes, and snippets.

@NeelBhatt
Created June 9, 2020 18:00
Embed
What would you like to do?
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