Possible Duplicates:
Why does it appear that my random number generator isn't random in C#?
Random number generator not working the way I had planned (C#)
I have this method to calculate a random value:
private double getMetrics(SourceFile sf)
        {
            Random r = new Random();
            return (r.NextDouble());
        }
However it returns always the same number, in my case 0.41500350386603
Why????
 
     
    