TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Collection
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Ashish Bhatnagar (5)
Abhishek Singhal (3)
Swesh S (3)
Senthilkumar (3)
Sarthak Varshney (2)
Munib Butt (2)
Sandeep Singh Shekhawat (2)
Amit Choudhary (2)
Rahul Singh (2)
Mahesh Chand (2)
Anand Lakshminarasimh (2)
Matthew Cochran (2)
Naresh Beniwal (2)
Santosh Sarnobat (2)
Lajapathy Arun (2)
Vishal Babuks (2)
Amr Monjid (2)
Vinay Ayinapurapu (2)
Sanjeeb Lenka (2)
Vinoth Arun Raj Xavier (1)
Jefferson S. Motta (1)
Sandeep Kumar (1)
Brij Mishra (1)
Gustav Stiegr (1)
Bhuvanesh Mohankumar (1)
Mohammad Tahir Ansari (1)
Ravi Satyadarshi (1)
Pramod Thakur (1)
Rahul Sahay (1)
Sivasankar Gorantla (1)
Jagannath Sethi (1)
gary sun (1)
Rama Mohan (1)
Richa Garg (1)
Mukesh Kumar (1)
Sardar Mudassar Ali Khan (1)
Ashish Dubey (1)
Gurpreet Arora (1)
Shakti Saxena (1)
Raj Bhatt (1)
Vijay Kumari (1)
Sanwar Ranwa (1)
Kiranteja Jallepalli (1)
Virendra Thakur (1)
Dhanapal Chandran (1)
Sourabh Somani (1)
Ravikant Sahu (1)
Rajkiran Swain (1)
Manoj Kalla (1)
George (1)
Dipen Lama (1)
Anu Viswan (1)
Sourav Kayal (1)
Rafid Khalid Abdullah (1)
Harpreet Singh (1)
Arunava Bhattacharjee (1)
Akhil Garg (1)
Nagaraj M (1)
Vaishali Vishwakarma (1)
Abhishek Tiwari (1)
Pawan Pandey (1)
Ramakrishna Basagalla (1)
Aman Panjwani (1)
Henri Hein (1)
Vidya Vrat Agarwal (1)
C# Curator (1)
Rikam Palkar (1)
Manikandan M (1)
Sameer Shukla (1)
David Mccarter (1)
Kirtesh Shah (1)
Jay Krishna Reddy (1)
Varun Setia (1)
Prajnya (1)
Sriganapathi S (1)
Related resources for Collection
No resource found
.NET Core: Detail of Lifetime Management
11/21/2023 8:40:20 AM.
In .NET Core, lifetime management refers to how objects are created, used, and eventually disposed of within an application. It ensures efficient resource utilization and prevents memory leaks.
Java 21: New Features and Examples
11/2/2023 10:48:59 AM.
Java 21 is a major release that includes a number of new features and improvements that make Java more concise, expressive, safe, and performant. Some of the most significant new features include reco
New Features of Rust 1.73
11/2/2023 7:18:05 AM.
Rust 1.73 is a major release that includes a number of new features and improvements, such as impl Trait syntax, generic associated types, and improved borrow checker performance. These changes make R
Advanced Garbage Collection Potential
10/25/2023 11:23:20 AM.
Learn commands of the Garbage Collector to work efficiently. I encountered a significant obstacle during a recent image and pdf processing project using Windows Forms Applications. Despite having a sy
Overview Of Array And Collection
10/20/2023 6:19:24 AM.
Arrays and Collections are fundamental data structures used in programming to store and manipulate multiple elements. An array is a fixed-size, ordered collection of elements of the same data type. It
Producer Consumer Pattern In C#
10/12/2023 10:03:56 AM.
In this article, you will learn about producer consumer pattern in C#.
Getting Data From View to Controller in MVC
10/10/2023 5:50:39 AM.
This article explains that how can access data from view to controller’s action method.
Steps To Override Finalize In C#
10/9/2023 6:07:26 AM.
C# does not allow overriding the Finalize method. Let's see how to do that.In C#, the Finalize method is used for cleaning up unmanaged resources before an object is destroyed by the garbage colle
Using MockingContext: A Flexible IServiceProvider Implementation in C#
10/3/2023 5:43:56 AM.
Explore the MockingContext class: a custom implementation of the IServiceProvider interface in C#. Learn how this class provides an efficient way to automatically instantiate or mock services on-the-f
Generics In C#
10/2/2023 8:31:51 PM.
In this article you will learn about Generics in C#.Generics in C# provide a powerful way to create classes, interfaces, methods, and delegates with a placeholder for data types. They enable developer
Creating A Custom Collections Class Using System.Collections.CollectionBase
9/25/2023 8:41:25 AM.
This article will show you how you can create a class that can behave just like a collection class.
Mastering List Collections in C#
9/24/2023 7:43:32 AM.
Explore the power and versatility of C# List collections with this comprehensive guide. From basic operations to advanced techniques, learn how to harness the full potential of lists for effective dat
Convert a DataTable to Generic List Collection
9/22/2023 12:01:23 PM.
In this article, I am sharing a generic method I have developed while solving a question here on C# Corner.
Dictionary Overview In C#
9/22/2023 8:33:21 AM.
This article is an overview of Dictionary in C#. Dictionary is a generic class that belongs to the System.Collection namespace in . NET. A dictionary can store Keys and Values of any data type in .NET
Array and ArrayList in C#
9/21/2023 4:24:34 AM.
In this article we learn what an array object and ArrayList are in C#.
IEnumerable and ICollection in C#
9/19/2023 5:12:11 AM.
In this article you will learn about IEnumerable and ICollection in the C# language.
Why String Is Immutable
9/12/2023 4:49:40 AM.
A string is a reference data type in C#. A string is a sequential collection of characters that is used to represent text. The value of the String object is the content of the sequential collection of
Arrays in F# - A Mutable Collection
9/11/2023 9:12:44 AM.
In this article you will learn about Arrays in F#. Arrays in F# are mutable data type.
Garbage Collection in C#
9/8/2023 10:57:59 AM.
In C#, garbage collection is a memory management process where the runtime environment automatically identifies and reclaims memory that is no longer in use by the program. It helps prevent memory lea
C# Tokenizer
9/5/2023 8:26:12 AM.
A simple tokenizer in csharp without using regex or MatchCollections.
Oracle Data Provider for .NET : Part VI
9/5/2023 6:06:08 AM.
Oracle Data Provider for .NET (ODP.NET) is an implementation of a data provider for the Oracle database. ODP.NET uses Oracle native APIs to offer fast and reliable access to Oracle data and features f
ArrayList in C#
9/5/2023 6:03:25 AM.
In this tutorial, learn C# ArrayList class and most commonly asked questions about C# ArrayList.
List In Kotlin
9/4/2023 5:49:50 AM.
In this article, we delve into Kotlin's Lists, fundamental in managing collections of items. Learn about Immutable and Mutable Lists, key methods, and their practical use cases.
Working on SortedDictionary in C#
8/31/2023 10:08:00 AM.
In this article I explain how to create the SortedDictionary and perform various operations of it using its properties and methods.
Learn Iteration Statements In C#
8/28/2023 10:40:11 AM.
In this article, we will learn about some iteration statements in C#.Iteration statements, also known as loops, are essential programming constructs that allow you to execute a block of code repeatedl
Implementing Model Binding, Handling Binding Failures, and Utilizing a Custom Model Binder in ASP.NET
8/27/2023 12:09:49 PM.
In ASP.NET, model binding simplifies the process of mapping incoming HTTP request data to the parameters of controller actions or methods. This process ensures that the data provided by the user is ap
PowerApps Collections Variable
8/25/2023 9:51:50 AM.
In this article, you will learn about PowerApps Collections Variable.
Generics in C#
8/25/2023 9:14:39 AM.
Harness the Versatility of C# Generics: Boost Code Reusability and Type Safety. Dive into how Generics empower adaptable, efficient code, accommodating various data types while maintaining robust type
Understanding Projections In LINQ With Select & SelectMany Enumerable Methods
8/23/2023 9:11:12 AM.
In this article I will try to explain how to use projections in LINQ with a collection of objects.
Exists & Contains Method To Check An Item In A List Collection
8/21/2023 11:14:25 AM.
In this article we will learn about exists and contain method. to check an item in a list collection.
Designing Sortable Collections using IComparable
8/18/2023 6:20:59 AM.
.NET Framework Class Library provides several interfaces to support additional functionality in collections such as ICollection, IList, and IComparable. IComparable interface is used to support the so
Using the OrderBy and OrderByDescending Operator in LINQ
8/8/2023 11:08:55 AM.
Using the OrderBy and OrderByDescending Operator in LINQ: Sorting Collections
Stack Class in Java
8/7/2023 10:49:32 AM.
Java Collection framework provides a Stack class that models and implements a Stack data structure. The class is based on the basic principle of last-in-first-out.
Object Relational Mapping (ORM) Using NHibernate - Part 2 of 8
7/31/2023 5:41:13 AM.
Object-Relational Mapping (ORM) is a programming technique that allows developers to interact with a relational database using object-oriented programming paradigms. It bridges the gap between the obj
Insert Operation In MongoDB Using Robo3T
7/28/2023 7:26:35 AM.
In this article, we will learn how to insert data in MongoDB using Robo 3T. We will learn from basics because I have written this article focusing on the beginners. We will also learn how we can setup
Object Relational Mapping (ORM) Using NHibernate - Part 3 of 8
7/28/2023 7:00:28 AM.
Firstly in part 1 of this article series, it had been shown that in ORM, while mapping a one-to-one association between objects to their corresponding tables, the primary key of one table is posted as
Collections in C#
7/26/2023 7:38:23 AM.
Learn about collections in C#, including commonly used collection types such as lists, queues, stacks, and dictionaries. This tutorial covers the basics of collections, how to use them, and how to sel
Using Power Automate To Upload The Attachments From SharePoint Document Library
7/19/2023 9:14:36 AM.
Detailed approach on how to bring in an attachment in a SharePoint library (where SP list will have attachments OOTB but not the library). This article is split into three parts for separating the tas
CollectionView in .Net MAUI
7/18/2023 9:04:55 AM.
In this article, we are going to learn about how to add CollectionView in .Net MAUI.
Server Side Pagination in MongoDB
6/21/2023 1:36:43 PM.
Here is a step-by-step guide to implementing server-side pagination in MongoDB.
List Collection Class in C#
6/16/2023 9:58:58 AM.
List is a collection class in C# and .NET. Code examples in this article show how to work with List<T> class in C#. Also code examples on C# Lists and C# Collections.
Garbage Collection in .Net framework
6/12/2023 8:18:25 AM.
Garbage Collection (GC) is an important tasks of .NET framework. In this article, I'll explain Garbage collection basics and how it works including C# garbage collection code example.
Collections in Kotlin
6/12/2023 7:20:22 AM.
The article wraps Collections in Kotlin and provides a summary or final thoughts on the topic.
C# Heap(ing) Vs Stack(ing) In .NET - Part Two
6/6/2023 8:25:13 AM.
Having a basic understanding of how memory management works will help explain the behavior of the variables we work with in every program we write. In this article I'll cover some of the behavior
C# Heap(ing) Vs Stack(ing) In .NET - Part One
6/6/2023 8:17:38 AM.
Even though with the .NET framework we don't have to actively worry about memory management and garbage collection (GC), we still have to keep memory management and GC in mind in order to optimize
How To Check The Length Of An Array In C#
5/6/2023 6:47:04 PM.
In this article, you will learn How to check the Length of an array in C#
Applying site scripts to modern site collections using Power Automate
4/21/2023 6:20:32 AM.
Process of applying site scripts to modern site collections using Power Automate.
How To Copy An Array In C#
4/19/2023 12:42:18 PM.
In this article you will learn How to copy array in C#.
Working With Arrays In JavaScript
3/15/2023 10:03:55 AM.
Arrays are the collection of the same data-types values or a collection of data items. In memory variables, we can store one value at a time, but in arrays, we can store many values and retrieve them
How To Use A String Collection in C#
2/9/2023 3:28:46 PM.
StringCollection is a collection of strings. In this article, learn how to take advantages of StringCollection methods and properties to manage a collection of strings. StringCollection class
How To Conditionally Display/Hide Controls Using A Checkbox And A Gallery Control
2/7/2023 10:33:33 AM.
In this article, we will learn how to show or hide certain elements based on certain conditions. This can be useful in scenarios where you only want to display specific controls on screen based on a u
Difference Between "RUNTIME" Class And "CLASS" Class
1/30/2023 6:49:42 AM.
The Runtime class encapsulates the runtime environment. In a running java application, the instances of this class encapsulates the run time state of an object.
Dynamically Getting Database Collection From SQL Server Using C#
1/24/2023 5:39:19 AM.
In this article we are going to see how to get a database List dynamically using C#.
Postman - Environment, Collection And Monitors
1/4/2023 9:06:09 AM.
In this article, you will learn about Postman Environment, Collection and Monitors.
Creation Of API Reqest Using Postman Tool
12/27/2022 8:44:55 AM.
In this article, you will learn how to create API Reqest using Postman Tool.
Postman - Setup Workspace And Collection
12/16/2022 4:58:32 AM.
This is about using Postman - Setup Workspace and Collection.
Sorting Collection of Custom Type using Generic
11/30/2022 9:19:46 AM.
This article shows a simple and easy way to sort the business object collection using generic.
IEnumerable<T> Vs IReadOnlyList<T>
11/28/2022 7:22:02 AM.
Understanding the differences between IEnumerable<T> and IReadOnlyList<T> when returning immutable collection from method
Important Interface in .NET: Work With ICollection Interface
11/17/2022 9:33:03 AM.
In this presentation we will understand the ICollection interface of the .NET class library.
Creating Strongly Typed Custom Collections in C#
11/17/2022 6:36:55 AM.
In this article, author shows you how to create and use strongly typed custom collections.
SharePoint Online - How To Copy Site To Different Tenant/Site Collection Using PowerShell
9/28/2022 5:49:57 AM.
In this article, we will learn how to copy a SharePoint site schema from one site collection or tenant to another using PowerShell.
Queue And Stack Collection In C#
9/15/2022 10:05:38 AM.
Queue and stack are two common implementations when creating linked lists. A queue uses first-in-first-out algorithm. The stack uses last-in-first-out algorithm. Both are generic collections in C# and
Remove an Item Form Observable Collection Using Remove()
9/15/2022 6:35:28 AM.
You can remove an item from an ObservableCollection or any collection if you correctly implement Equals() and GetHashCode().
Importance of Generics in C#
9/2/2022 9:50:18 AM.
This article explains the importance of Generics in C# and how to implement them.
Role Of Map Interface And Iterator Interface In Java
8/29/2022 5:30:41 AM.
A map is a special kind of set with no duplicates. In the Collections API, java.util.Map defines this interface.
Practical Usage of NameValueCollection in C#
8/24/2022 5:38:58 AM.
In this article, we are going to see the practical usage of a NameValueCollection.
Arrays Class In Java
8/1/2022 8:28:56 PM.
In this article, you will learn about the Arrays class in java.
Collection Combine In Python
7/22/2022 8:50:22 PM.
In this article, we will see how we can combine collections easily in Python.
LinkedList Class In UTIL Package Collection
6/19/2022 7:53:28 AM.
The Linked List class provides a linked-list data structure.
Three Cursors In Collection Framework
6/15/2022 1:52:52 PM.
In this article, you will learn about cursor in the collection framework.
Events On Collection (List) In C#
5/17/2022 12:40:24 PM.
Events on Collection using List. The Application example shows how to add Events on Different Methods of List in C#.
Reduce Spacing Between CollectionView Cell
5/13/2022 1:48:07 PM.
This article is about to reduce white spacing between CollectionView cells.
Custom Collection Classes in C#
5/4/2022 8:36:42 AM.
This article explains custom collection classes in C# with an example.
Generic Collection Classes in C#
5/2/2022 7:31:08 AM.
The collections the System.Collections.Generic namespace are type safe and this article explains them.
Legacy Classes And Legacy Interface Of Collections API
4/28/2022 9:41:06 AM.
In this article, you will learn about legacy classes and legacy interface of collections api.
Generics And Generic Collections In C#
4/25/2022 11:36:38 AM.
In this article you will learn about Generics and Generic Collections in C# language.
Collections In C#
4/5/2022 3:17:56 PM.
The purpose of this article is to demonstrate how to work with arrays and the issues associated with them, followed by Non-Generic collections and their issues, and finally Generic collections which s
Generics in C# - Part II
4/1/2022 10:01:52 AM.
In part II of generics in C# we will see how to create generic classes, structures, interfaces, and delegates. We will also see how to create a custom generic collections.
Generics in C# - Part I
4/1/2022 9:44:48 AM.
In Part I of this series you will see the importance of generics, you will learn how to use generic types which in the System.Collections.Generic namespace and you will also learn how to create generi
Adding Attachments In SharePoint Document Library Using Power Apps List Control
3/30/2022 1:28:24 PM.
Detailed approach on how to bring in an attachment in a SharePoint library (where SP list will have attachments OOTB but not the library). This article is split into three parts for separating the tas
Display The Files Stored In Another SharePoint Library Using Power Apps
3/30/2022 1:27:10 PM.
Detailed approach on how to bring in an attachment in a SharePoint library (where SP list will have attachments OOTB but not the library). This article is split into three parts for separating the tas
Performance Comparison Using Three Different Methods for Joining Lists
3/7/2022 2:34:15 PM.
This article explores the performance of joining 2 large lists based on 3 different methods: AddRange, using arrays, and using Linq's Concat extension method.
Using .NET Collections With C#
2/23/2022 9:57:04 AM.
.NET offers a variety of collections such as ArrayList, Hashtable, queues, Dictionaries.
Garbage Collection in C#
2/8/2022 11:20:24 AM.
In this article I will explain you about Garbage Collection in C#.
ObservableCollection Vs List In C#
2/7/2022 10:27:50 AM.
Today we will learn the subtle difference between ObservableCollection and List.
Implement The Dynamic Collection View In Xamarin.iOS
2/5/2022 4:28:25 PM.
In this article, I have explained about dynamic collection view feature in iOS and if you add collection view in your apps and it main job is to manage the data associated with collection. The collect
Collections in C#: ArrayList and Arrays
1/14/2022 9:30:55 AM.
This article explains the Collection classes in .NET. This first part explains the ArrayList class, advantages, disadvantages and differences with Array.
Exploring Collections library In Python
12/26/2021 10:15:52 AM.
The article explains the alternative to traditional Python collections which is Collections module
Collection Performance - How Do You LINQ?
12/4/2021 4:44:10 AM.
In this article, you will learn how do you LINQ?
C# SortedSet with Example
10/28/2021 6:11:38 AM.
In any programming language, collections play a very important role. Many times we need Sorted collections, so I felt to discuss SortedSet collections in this article. This article can be used by begi
The New PriorityQueue Collection In .NET 6
8/5/2021 7:06:56 AM.
In this article, you will learn about the new PriorityQueue collection in .NET 6.
How To Get External User Report In SharePoint Online Site Collection
7/12/2021 9:29:46 AM.
Using this PS script below we can get the external users report in any SharePoint online site collection both self service and stand-alone sites.
Import Swagger APIs Into Postman Collection
6/29/2021 3:40:48 PM.
In this article, you will learn how to import Swagger APIs into Postman Collection.
New Generic Collection In .NET 6 - A Priority Queue
6/17/2021 1:58:20 PM.
In this article, you will learn about the new Generic Collection in .NET 6 a Priority Queue.
PowerApps Bulk Update Collection With Patch And Floating Concept Used For Screen Customization
6/14/2021 5:20:25 AM.
In this article, I will explain on edit, update or delete multiple tasks of the Task gallery along with this I will explain the floating concept in Power Apps which will help for better architecture i
📚 Python Operators And Literal Collections ✍️
6/10/2021 8:57:49 AM.
In this article, you will learn about Python Operators and Literal Collections.
How To Enable Custom Scripting In SharePoint Online Site Collection
4/7/2021 1:58:26 PM.
In this article, you will learn how to enable and disable custom scripting in SharePoint online site collection.
Get the Desktop Details of Your Windows Operating System in ASP.Net
4/2/2021 11:01:46 AM.
This article describes how to get the Desktop details of User in your System . Here I will get the information from the Win32_Desktop class.
Get All Intranet User Details in ASP.Net
3/26/2021 7:17:24 AM.
This article describes how to get the details of users present in a intranet. here i will get these info from Win32_UserAccount class.
DataTable And DataTableCollection Class In ADO.NET
3/17/2021 1:46:04 PM.
In this article, you will learn about DataTable and DataTableCollection Class in ADO.NET.