Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
Misc
8.5K+ articles
C#
1.9K+ articles
CSharp-method
701+ articles
CSharp-Collections-Namespace
196+ articles
CSharp-Generic-List
33+ articles
CSharp-Generic-SortedSet
22+ articles
CSharp-Generic-HashSet
20+ articles
CSharp-LinkedList
19+ articles
CSharp-Generic-Stack
13+ articles
CSharp-Generic-Namespace
140+ posts
Recent Articles
Popular Articles
List FindLastIndex() Method in C# | Set -2
Last Updated: 05 December 2019
This method is used to search for an element which matches the conditions defined by a specified predicate and returns the zero-based index of the last occurrence within t...
read more
Technical Scripter
C#
CSharp-method
CSharp-Generic-List
CSharp-Generic-Namespace
How to sort a list in C# | List.Sort() Method Set -2
Last Updated: 22 September 2021
ListT.Sort() Method is used to sort the elements or a portion of the elements in the ListT using either the specified or default IComparerT implementation or a provided Co...
read more
Technical Scripter
C#
CSharp-method
CSharp-Generic-List
CSharp-Generic-Namespace
Removing the object from the top of the Stack in C#
Last Updated: 28 January 2019
StackT.Pop Method is used to remove and returns the object at the top of the StackT. This method comes under the System.Collections.Generic namespace.Syntax:public T Pop ...
read more
C#
CSharp-method
CSharp-Generic-Stack
CSharp-Generic-Namespace
Getting an enumerator that iterates through the Stack in C#
Last Updated: 28 January 2019
StackT.GetEnumerator Method is used to get an IEnumerator that iterates through the Stack. And it comes under the System.Collections.Generic namespace.Syntax:public System...
read more
C#
CSharp-method
CSharp-Generic-Stack
CSharp-Generic-Namespace
Copying the Queue elements to 1-D Array in C#
Last Updated: 28 January 2019
QueueT.CopyTo(T[], Int32) Method is used to copy the Queue elements to an existing one-dimensional Array, starting at the specified array index. The elements are copied to...
read more
C#
CSharp-method
CSharp-Generic-Stack
CSharp-Generic-Namespace
Getting an object at the beginning of the Queue in C#
Last Updated: 28 January 2019
The Dequeue() method is used to returns the object at the beginning of the Queue. This method is similar to the Peek() Method. The only difference between Dequeue and Peek...
read more
C#
CSharp-method
CSharp-Generic-Queue
CSharp-Generic-Namespace
Getting enumerator that iterates through the Queue in C#
Last Updated: 28 January 2019
QueueT.GetEnumerator Method is used to get an enumerator which can iterate through the Queue. And it comes under the System.Collections.Generic namespace.Syntax:public Sys...
read more
C#
CSharp-method
CSharp-Generic-Queue
CSharp-Generic-Namespace
C# SortedDictionary Class
Last Updated: 03 February 2025
In C#, the SortedDictionaryTKey,TValue class represents the collection of key/value pairs. This pair is in sorted form and the sorting is done on the key. This class is de...
read more
C#
CSharp-Generic-Namespace
CSharp SortedDictionary Class
C# Dictionary
Last Updated: 31 January 2025
Dictionary in C# is a generic collection that stores key-value pairs. The working of Dictionary is quite similar to thenon-generic hashtable. The advantage of a Dictionary...
read more
C#
CSharp-Generic-Namespace
CSharp Dictionary Class
List.FindIndex() Method in C# with Examples
Last Updated: 19 July 2024
ListT.FindIndex Method is used to search for an element that matches the conditions defined by a specified predicate and returns the index of the first occurrence within t...
read more
Technical Scripter
C#
CSharp-method
CSharp-Generic-List
CSharp-Generic-Namespace
C# HashSet
Last Updated: 31 January 2025
HashSet in C# is an unordered collection of unique elements. This collection is introduced in.NET 3.5. It supports the implementation of sets and uses the hash table for s...
read more
C#
CSharp-Generic-HashSet
CSharp-Generic-Namespace
C# SortedSet
Last Updated: 31 January 2025
SortedSet in C# is a collection of objects that stores elements uniquely in sorted order. It is of the generic type collection and is defined under System.Collections.Gene...
read more
C#
CSharp-Generic-SortedSet
CSharp-Generic-Namespace
C# LinkedList
Last Updated: 31 January 2025
In C# aLinkedListis a linear data structure that stores elements in a non-contiguous location. The elements in a linked list are linked with each other using pointers. In ...
read more
Linked List
C#
DSA
CSharp-Collections-Namespace
CSharp-Generic-Namespace
CSharp-LinkedList
SortedDictionary Implementation in C#
Last Updated: 25 September 2023
In C#, SortedDictionary is a generic collection that is used to store the key/value pairs in the sorted form and the sorting is done on the key. SortedDictionary is define...
read more
C#
CSharp-Generic-Namespace
CSharp SortedDictionary Class
C#
C# List Implementation
Last Updated: 31 January 2025
In C#, a List is a generic collection used to store the elements or objects in the form of a list defined under System.Collection.Generic namespace. It provides the same f...
read more
C#
CSharp-Generic-List
CSharp-Generic-Namespace
1
2
3
4
...
10
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !