I need to create a block of unique lines to test a different project im working on.

so i created a simple program to generate a random string of X length.

The issue is that if i call it once i get a random string if i call it again (in a for loop for example I get the same string for the entire execution of the loop.

I have a feeling that its being cached or something but i didn't know .net did that and im just confused at this point

calling code

    StreamWriter SW = new StreamWriter("c:\\test.txt");
    int x = 100;
    while (x >0)
    {
        SW.WriteLine(RandomString(20));
        x--;
    }

here is the method

private static string RandomString(int Length)
{
    StringBuilder sb = new StringBuilder();
    Random randomNumber = new Random();

    for (int i = 0; i <= Length; ++i)
    {
        int x = randomNumber.Next(65, 122);
        sb.Append(Convert.ToChar(x));
    }
    return sb.ToString();        
}

and here is the output

"VEWMCQ`Fw]TvSFQawYnoB
VEWMCQ`Fw]TvSFQawYnoB
VEWMCQ`Fw]TvSFQawYnoB
VEWMCQ`Fw]TvSFQawYnoB
VEWMCQ`Fw]TvSFQawYnoB
VEWMCQ`Fw]TvSFQawYnoB
..................
VEWMCQ`Fw]TvSFQawYnoB
VEWMCQ`Fw]TvSFQawYnoB
VEWMCQ`Fw]TvSFQawYnoB
VEWMCQ`Fw]TvSFQawYnoB
VEWMCQ`Fw]TvSFQawYnoB"

So what gives i thought Random.next() would always return a new random number?

link|improve this question

66% accept rate
feedback

6 Answers

up vote 20 down vote accepted

You are creating the Random instances too close in time. Each instance is initialised using the system clock, and as the clock haven't changed you get the same sequence of random numbers over and over.

Create a single instance of the Random class and use it over and over.

Use the using keyword so that the StreamWriter is closed and disposed when you are done with it. The code for a loop is easier to recognise if you use the for keyword.

using (StreamWriter SW = new StreamWriter("c:\\test.txt")) {
   Random rnd = new Random();
   for (int x = 100; x > 0; x--) {
      SW.WriteLine(RandomString(rnd, 20));
   }
}

The method takes the Random object as a parameter.

Also, use the length to initialise the StringBuilder with the correct capacity, so that it doesn't have to reallocate during the loop. Use the < operator instead of <= in the loop, otherwise you will create a string that is one character longer than the length parameter specifies.

private static string RandomString(Random rnd, int length) {
   StringBuilder sb = new StringBuilder(length);
   for (int i = 0; i < length; i++) {
      int x = rnd.Next(65, 122);
      sb.Append((char)x);
   }
   return sb.ToString();        
}
link|improve this answer
+1 for the StringBuilder and loop notes – schnaader Apr 30 '09 at 16:54
feedback

See Random constructor description at MSN, this part:

The default seed value is derived from the system clock and has finite resolution. As a result, different Random objects that are created in close succession by a call to the default constructor will have identical default seed values and, therefore, will produce identical sets of random numbers.

So either call the Random() constructor only once at the beginning of your program or use the Random(int32) constructor and define a varying seed yourself.

link|improve this answer
feedback

only declare randomNumber once



public class MyClass
{
    private static Random randomNumber = new Random();

    private static string RandomString(int Length)
    {
        StringBuilder sb = new StringBuilder();  

        for (int i = 0; i ... Length; ++i)
        {
    	int x = MyClass.randomNumber.Next(65, 122);
    	sb.Append(Convert.ToChar(x));
        }
        return sb.ToString();        
    }
}
link|improve this answer
feedback

the seed for the random numbers are all the same due to the short amount of time it takes, in effect you recreate the random generator with the same seed every time, so the Next() call returns the same random value.

link|improve this answer
feedback

Because you create a new Random object in each call.

Simply move the randomNumber out of the method and make it a class member.

private Random randomNumber = new Random();
private static string RandomString(int Length)
{
    StringBuilder sb = new StringBuilder();
    //...
}

All software Random generators are 'pseudo random' , they produce a sequence of numbers bases on a (starting) seed. With the same seed they produce the same sequence. Sometimes this is usefull. If you want to produce your program to produce the same sequence on each run, you can use new Random(0).

Edit: apparently the .Net Random class is auto-seeding, I didn't know that. So it is a timing problem, as others have pointed out.

link|improve this answer
Does .NET's Random not auto-seed? – Michael Myers Apr 30 '09 at 16:44
And... the constructor uses the current time stamp as the seed, so every item uses the same seed and therefore randomly arrives at exactly the same answer... :) – GalacticCowboy Apr 30 '09 at 16:45
It does, but with a time-dependend seed that doesn't seem to change that often, see my answer. – schnaader Apr 30 '09 at 16:45
The issue is not auto-seeding. It's fine to auto-seed, but creating multiple Random objects in close succession will mean they all have the same initial seed. – Matthew Flaschen Apr 30 '09 at 16:47
@mmyers. it does, based on the system time, see @schnaader's answer. – TygerKrash Apr 30 '09 at 16:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.