Answers for "random choice from int array c#"

C#
4

c# pick a random item from array

string[] names = new string[] { "name1", "name2", "name3" };
Random rnd = new Random();
int index = rnd.Next(names.Length);
Console.WriteLine($"Name: {names[index]}");
Posted by: Guest on October-28-2020

Code answers related to "random choice from int array c#"

C# Answers by Framework

Browse Popular Code Answers by Language