Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# get random index from list

// set a list in C#.
var myList = new List<int>{ 1, 2, 3, 4 };
// get the count of the elements and display randomly.
int index = random.Next(myList.Count);
Console.WriteLine(myList[index]);
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #random #index #list
ADD COMMENT
Topic
Name
6+2 =