Languages
[Edit]
EN

C# / .NET - get random element from list

11 points
Created by:
Dharman
518

Random.Next method example

List<int> list = new List<int>();

list.Add(11);
list.Add(22);
list.Add(33);
list.Add(44);
list.Add(55);

Random random = new Random();

for (int i = 0; i < 10; ++i)
{
	int index = random.Next(list.Count);

	Console.WriteLine(list[index]);
}

Output:

33
44
11
55
55
55
22
11
11
11

References

  1. List<T> Class - Microsoft Docs
  2. Random Class - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

C# / .NET - random

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join