If you want to generate a random number in your .NET application using C#, you can use the random class to generate one.
How to generate a random number in C# and .NET?
Below is a sample code snippet on how to generate random numbers in C#. Try to keep the instance of the Random class and reuse it Incase you are generating more than one random number continuously.
using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.DirectoryServices.AccountManagement; using System.IO; using System.Linq; using System.Net; using System.Net.Sockets; using System.Reflection; namespace AbundantCode { internal class Program { // How to Generate a random number in C# and .NET? private static void Main(string[] args) { Random rnd = new Random(); int Random = rnd.Next(1, 100); Console.WriteLine(Random); Console.ReadKey(); } } }
Leave a Reply