Is there an easy way to do this with AutoFixture?
var myInt = fixture.Create<int>(min, max);
I would like to know whether or not this is possible with AutoFixture or if I have to instantiate a random object and do the work myself.
In case this is not possible, is there a good reason for not having this feature that I am missing here?