What is the easiest way to generate quasi random numbers in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T01:17:27Zhttp://stackoverflow.com/feeds/question/1044325http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1044325/what-is-the-easiest-way-to-generate-quasi-random-numbers-in-c2What is the easiest way to generate quasi random numbers in C#?Edward Tanguay2009-06-25T14:39:26Z2009-06-25T14:47:25Z
<p>All I want is a <strong><em>pragmatic</em></strong> random number generator in C# so I can say e.g. </p>
<pre><code>int dummyAge = MathHelpers.GetRandomNumber(20,70);
</code></pre>
<p>and have it seem <strong>quasi random</strong>, e.g. to generate dummy data.</p>
<p>Most <a href="http://stackoverflow.com/questions/668361/fastest-implementation-of-a-true-random-number-generator-in-c">stack overflow questions on this topic</a> and on the web get into a philosophical discussions on <strong>true randomness</strong> which is not what I'm interested at the moment, e.g. I did one in <strong>PHP</strong> a long time ago which uses <strong>milliseconds/sleep</strong> which is fine for dummy data, <strong>I'm just trying to do this in</strong> <strong>C# quick</strong>.</p>
<p>Does anyone have a quick <strong>half-decent C# random number generator</strong> based on some time seed, etc. or, how could I change the following code so that it always doesn't generate the same 5 number in a row?</p>
<pre><code>using System;
namespace TestRandom23874
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10));
Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10));
Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10));
Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10));
Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10));
Console.ReadLine();
}
}
public class MathHelpers
{
public static int GetRandomNumber(int min, int max)
{
Random random = new Random();
return random.Next(min, max);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1044325/what-is-the-easiest-way-to-generate-quasi-random-numbers-in-c/1044330#10443309Answer by BFree for What is the easiest way to generate quasi random numbers in C#?BFree2009-06-25T14:40:47Z2009-06-25T14:40:47Z<pre><code>public class MathHelpers
{
private static Random random = new Random();
public static int GetRandomNumber(int min, int max)
{
return random.Next(min, max);
}
}
</code></pre>
<p>This way, you're not creating a new Random object every time, rather you're reusing the same one. When you recreate a new one quickly enough, they will yield the same results. If however, you reuse an existing one, you'll get randomness.</p>
http://stackoverflow.com/questions/1044325/what-is-the-easiest-way-to-generate-quasi-random-numbers-in-c/1044361#10443612Answer by Jon Skeet for What is the easiest way to generate quasi random numbers in C#?Jon Skeet2009-06-25T14:46:59Z2009-06-25T14:46:59Z<p>BFree's answer is fine, but I think it's also worth mentioning a slightly different pattern - passing the <code>Random</code> instance into anything that needs it, rather than always using a single instance via a static variable. The downside of the latter approach is that <code>Random</code> isn't thread-safe. You either need some locking, or thread-local variables, or avoiding using multiple threads to start with. So I would adjust the original code in the question to:</p>
<pre><code>using System;
namespace TestRandom23874
{
class Program
{
static void Main(string[] args)
{
Random rng = new Random();
Console.WriteLine("the random number is: {0}",
MathHelpers.GetRandomNumber(rng, 1, 10));
Console.WriteLine("the random number is: {0}",
MathHelpers.GetRandomNumber(rng, 1, 10));
Console.WriteLine("the random number is: {0}",
MathHelpers.GetRandomNumber(rng, 1, 10));
Console.WriteLine("the random number is: {0}",
MathHelpers.GetRandomNumber(rng, 1, 10));
Console.WriteLine("the random number is: {0}",
MathHelpers.GetRandomNumber(rng, 1, 10));
}
}
public class MathHelpers
{
public static int GetRandomNumber(Random random, int min, int max)
{
return random.Next(min, max);
}
}
}
</code></pre>
<p>It's just basic inversion of control, really. You might have <em>one</em> static RNG with locking round it, used to generate a new instance of <code>Random</code> in a thread-safe way when you need it (by randomly generating a seed and then using that to create the instance) then reusing the <code>Random</code> throughout a particular single-threaded set of operations.</p>