Ahoj,
potřebuji pomoc, už si nevím rady :X
mám pole čísel, které chci mezi s sebou promíchat, ale nevím, jak zabránit opakování čísel.
Random rand = new Random();
int nahoda;
int[] cisla = new int[] { 1, 2, 3, 4, 5 };
for (int i = 0; i < cisla.Length; i++)
{
nahoda = rand.Next(1, 6);
cisla[i] = nahoda;
Console.Write(cisla[i] + " ");
}
Console.ReadLine();