I just want to know how i can generate random numbers with no repeat in c#...I read many topics but they didn't works... i have one array and i want to fill every room with random numbers from 0 to 9.each room shoud have diffrent numbers... I use this :
for (int i = 0; i < 20; i++)
{
Random rnd = new Random();
int temp = 0;
temp = rnd.Next(0, 9);
page[i] = temp;
}
but I get same number in evey room's of array...tnx
