How to Split a List in C# - Step by Step Examples
How to Split a List in C# ?
Answer
To split a list in C#, you can use LINQ's Chunk
method or iterate through the list manually to create sublists.
✐ Examples
1 Split a List Using LINQ
In this example,
- We include the necessary namespaces:
System
andSystem.Collections.Generic
. - We create a list named
numbers
with initial integer values. - We define a chunk size.
- We use LINQ's
Chunk
method to split the list into chunks of the specified size. - Finally, we print the list of chunks to standard output.
C# Program
using System;
using System.Collections.Generic;
using System.Linq;
class Program {
static void Main() {
List<int> numbers = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8 };
int chunkSize = 3;
var chunks = numbers.Chunk(chunkSize);
foreach (var chunk in chunks) {
Console.WriteLine(string.Join(", ", chunk));
}
}
}
public static class Extensions {
public static IEnumerable<IEnumerable<T>> Chunk<T>(this IEnumerable<T> source, int chunkSize) {
while (source.Any()) {
yield return source.Take(chunkSize);
source = source.Skip(chunkSize);
}
}
}
Output
1, 2, 3 4, 5, 6 7, 8
2 Split a List Manually
In this example,
- We include the necessary namespace:
System
. - We create a list named
numbers
with initial integer values. - We define a chunk size.
- We use a loop to iterate over the list and create sublists of the specified chunk size.
- The sublists are stored in a list, where each element represents a chunk of the original list.
- Finally, we print the list of chunks to standard output.
C# Program
using System;
using System.Collections.Generic;
class Program {
static void Main() {
List<int> numbers = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8 };
int chunkSize = 3;
List<List<int>> chunks = new List<List<int>>();
for (int i = 0; i < numbers.Count; i += chunkSize) {
chunks.Add(numbers.GetRange(i, Math.Min(chunkSize, numbers.Count - i)));
}
foreach (var chunk in chunks) {
Console.WriteLine(string.Join(", ", chunk));
}
}
}
Output
1, 2, 3 4, 5, 6 7, 8
Summary
In this tutorial, we learned How to Split a List in C# language with well detailed examples.
More C# Lists Tutorials
- How to create an Empty List in C# ?
- How to Initialize a List in C# ?
- How to Get Length of a List in C# ?
- How to create a List of size N in C# ?
- How to create a List of Numbers from 1 to N in C# ?
- How to create a List of Strings in C# ?
- How to create a List of Empty Lists in C# ?
- How to Access Elements in a List in C# ?
- How to get Element in a List at a Specific Index in C# ?
- How to get First Element in a List in C# ?
- How to get Last Element in a List in C# ?
- How to Iterate Over a List in C# ?
- How to Iterate Over a List with Index in C# ?
- How to Iterate Over a List in Reverse Order in C# ?
- How to check if a List is Empty in C# ?
- How to check if a List is Not Empty in C# ?
- How to get Sub List in C# ?
- How to get the Index of Specified Element in a List in C# ?
- How to check if a Specific Element is present in the List in C# ?
- How to check if a List contains all the elements of Another List in C# ?
- How to count the Number of Occurrences of Specific Element in the List in C# ?
- How to find the Element with Maximum Number of Occurrences in a List in C# ?
- How to find the Element with Minimum Number of Occurrences in a List in C# ?
- How to Sort a List in C# ?
- How to Sort a List in Ascending Order in C# ?
- How to Sort a List in Descending Order in C# ?
- How to create a Two Dimensional List in C# ?
- How to Iterate over a Two Dimensional List in C# ?
- How to create a Three Dimensional List in C# ?
- How to Copy a List in C# ?
- How to deep Copy a List in C# ?
- How to Split a List in C# ?
- How to Join Lists in C# ?
- How to Append an Element to a List in C# ?
- How to Insert an Element at Specific Index in a List in C# ?
- How to Append a List to another List in C# ?
- How to Concatenate Two Lists in C# ?
- How to check if Two Lists are Equal in C# ?
- How to check if Two Lists have Same Elements (Regardless of Order) in C# ?
- How to Convert a List of Integers to a List of Strings in C# ?
- How to Convert a List of Strings to a List of Integers in C# ?
- How to Convert a List of Floats to a List of Strings in C# ?
- How to Convert a List of Strings to a List of Floats in C# ?
- How to Reverse a List in C# ?
- How to Shuffle a List in C# ?
- How to Slice a List in C# ?
- How to Slice First N Elements from a List in C# ?
- How to Slice Last N Elements from a List in C# ?
- How to Rotate Elements in a List in C# ?
- How to Filter Elements of a List based on a Condition in C# ?
- How to Remove Duplicates in a List in C# ?
- How to Remove Element at a Specific Index from a List in C# ?
- How to Remove Specific Element from a List in C# ?
- How to Remove Element from List based on a Condition in C# ?
- How to Sort a List of Strings in Dictionary Order in C# ?
- How to Concatenate Strings in List in C# ?
- How to create a List of Lists in C# ?
- How to create a List of Dictionaries in C# ?
- How to create a List of Sets in C# ?