I use ninject framework. In my code I have a Lazy object. I can create an instance, but when I call the value property I got an exception.
private La
You need a default public constructor on Lazy :
public Lazy() {}