Nuestro grupo redactor ha estado horas investigando para darle resolución a tus dudas, te dejamos la resolución por esto deseamos resultarte de gran ayuda.
Ejemplo 1: valor aleatorio en array C#
Random random =newRandom();intvalue= random.Next(0, array.Length);
Console.Write(array[value]);
Ejemplo 2: cómo obtener números aleatorios en C#
Random rnd =newRandom();int month = rnd.Next(1,13);// creates a number between 1 and 12int dice = rnd.Next(1,7);// creates a number between 1 and 6int card = rnd.Next(52);// creates a number between 0 and 51
Más adelante puedes encontrar las interpretaciones de otros administradores, tú aún eres capaz mostrar el tuyo si dominas el tema.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)