Usage of static class Randomizer

People who uses the ObjectFiller.NET asked me very often, is it also possible to use the data generators from the ObjectFiller.NET in a easy way for simple types like integer or double?
Now you can do it, thanks to the static class Randomizer. You can use it like that:

public int GiveMeSomeRandomInt()
        {
            return Randomizer<int>.Create();
        }

This will create a random integer. This will work with all types (like int, string, double, bool, etc...). Its also possible to generate a complex type, like an address. The Randomizer uses always the default data generators of the ObjectFiller.NET.

But you can also customize the usage of the Randomizer with the same plugins which you can use for the ObjectFiller. For example you can do something like that:

public int GiveMeSomeRandomIntBetween100And200()
        {
            return Randomizer<int>.Create(new IntRange(100, 200));
        }

It will return you an integer between 100 and 200.

Here is another example where the Randomizer generates a random string based on the lorem ipsum plugin:

public string GiveMeSomeRandomLoremIpsumText()
        {
            return Randomizer<string>.Create(new Lipsum(LipsumFlavor.LoremIpsum));
        }