Languages
[Edit]
EN

C# / .NET - convert List to Array

1 points
Created by:
Root-ssh
175400

1. List.ToArray method example

List<int> list = new List<int>()
{
	1, 2, 3
};

int[] array = list.ToArray();

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

Output:

1 2 3

2. References

  1. List.ToArray 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.

C# conversion

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