Languages
[Edit]
EN

C# / .NET - generate array with 10 random numbers

14 points
Created by:
Root-ssh
175450

Random.Next method + array of integers example

public static class RandomUtils
{
	public static int[] generateArray(int count)
	{
		Random random = new Random();
		int[] values = new int[count];

		for (int i = 0; i < count; ++i)
			values[i] = random.Next();

		return values;
	}
}

Example:

int[] values = RandomUtils.generateArray(10);

foreach (int entry in values)
	Console.WriteLine(entry);

Output:

251131811
1423889290
691971575
975013585
1783948979
1657547893
1660547787
611183434
1679626510
1671582401

References

  1. Random.Next 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