Languages
[Edit]
EN

C# / .NET - convert Array to List

8 points
Created by:
Barmar
338

1. Enumerable.ToList method example

int[] array = new int[]
{
	1, 2, 3
};

List<int> list = array.ToList();

foreach (int entry in list)
	Console.Write(entry + " ");

Output:

1 2 3

2. References

  1. Enumerable.ToList Method - 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.
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