Languages
[Edit]
EN

C#/.NET - split array list into 2 lists with List.GetRange() method

13 points
Created by:
aaliyah
471

Using C# / .NET it is possible to split list in following way.

1. GetRange method example

List<int> list = new List<int>()
{
	1, 2, 3, 4, 5, 6, 7, 8, 9, 10
};

foreach (int entry in list.GetRange(0, 5))
	Console.Write(entry + " ");

Console.WriteLine();

foreach (int entry in list.GetRange(6, 5))
	Console.Write(entry + " ");

Output:

1 2 3 4 5
6 7 8 9 10

References

  1. List<T>.GetRange 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