In my C# code I need to create a Weibull random variable like this:
Weibull myVar= new Weibull(3, 5);
However, I would also like to set a seed so that the random numbers generated by this object are the same each time I run my program. In other words, I am looking for a Weibull-equivalent to
int seed = 12345;
Random myVar2 = new Random(seed);
How can I achieve that?