Languages
[Edit]
EN

C#/.NET - generate random index or item

2 points
Created by:
Pearl-Hurley
559

In C#/.NET is possible to generate random index or item in few ways.

1. Random index example

string[] items = {
	"Dog",
	"Cat",
	"Cow",
	"Pig"
};

Random random = new Random();
int index = random.Next(items.Length);
Console.WriteLine(index);

Output:

2

2. Random item example

string[] items = {
	"Dog",
	"Cat",
	"Cow",
	"Pig"
};

Random random = new Random();
int index = random.Next(items.Length);
string item = items[index];
Console.WriteLine(index + ": " + item);

Output:

1 : Cat

3. See also

  1. Random int in C#/.NET
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