Tenemos la contestación a este enigma, al menos eso pensamos. Si tienes alguna inquietud dínoslo y con gusto te responderemos
Ejemplo 1: generador de números aleatorios 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
Ejemplo 2: generar un número aleatorio en C#
Random rnd =newRandom();intvalue= rnd.Next(min,max);
Console.Write(value);
Puntuaciones y reseñas
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)