C# is an object-oriented programming language, making working with objects a common task. Object...
Category - Collection
LINQ Aggregate Operator in C# with Examples
The Aggregate operator is a LINQ query operator that applies a function to each element of a...
LINQ Join Operator in C# with Examples
The Join operator is a LINQ query operator that is used to combine the elements of two sequences...
LINQ GroupBy Operator in C# with Examples
The GroupBy operator is a LINQ query operator that groups the elements of a sequence according to a...
LINQ OrderBy Operator in C# with Examples
The OrderBy operator is a LINQ query operator that sorts the elements of a sequence in ascending...
LINQ Select Operator in C# with Examples
The Select operator is a LINQ query operator that projects each element of a sequence into a new...
LINQ – Where Operator with Examples
The Where operator is a LINQ query operator that filters a sequence of elements based on a Boolean...
What is LINQ?
LINQ (Language-Integrated Query) is a set of features in C# and other .NET languages that provides...
Queue Class in C# with Examples
In this article I’ll show you the Queue<> class and the various methods and properties of...
How to Create an ArrayList in C#
In C#, an ArrayList stores elements of multiple data types whose size can be changed dynamically. ...