Hello .
I am newbe in C# and working on Randon type .
a part of my code is :
but I get an error in the "R=r;" line .Code:Random r = new Random();
Double R;
for(int i=0;i<10;++i)
{
r.NextDouble();
R=r;
is it possible to change a random variable to double ?
thank you
