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 ollections
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 (4)
Jitendra Mesavaniya (4)
Swesh S (3)
Prakash Tripathi (3)
Lokendra Singh (2)
Vishal Joshi (2)
Jaimin Shethiya (2)
Aman Panjwani (2)
Ismail Sayyad (2)
Aakash Maurya (2)
Sarthak Varshney (2)
Amr Monjid (2)
Aman Singhal (2)
Sarvesh Shinde (2)
Satendra Singh Bhati (2)
Sandeep Sharma (2)
Haridevraj Srinivasan (2)
Gul Md Ershad (1)
Baibhav Kumar (1)
Rupenkumar Anjaria (1)
Keyur Pandya (1)
Ajay Kumar (1)
Sourav Kayal (1)
Roland Pheasant (1)
Akkiraju Ivaturi (1)
Ashutosh Singh (1)
Gowtham Rajamanickam (1)
Punar Dutt Rajput (1)
Vivek Tripathi (1)
Jithu Thomas (1)
Vipul Malhotra (1)
Alpesh Maniya (1)
Ramasagar Pulidindi (1)
Bhuvanesh Mohankumar (1)
Amit Choudhary (1)
Tahir Ansari (1)
Ravi Satyadarshi (1)
Pramod Thakur (1)
Rahul Sahay (1)
gary sun (1)
Mukesh Kumar (1)
Ashish Dubey (1)
Gurpreet Arora (1)
Rahul Singh (1)
Mahesh Chand (1)
Raj Bhatt (1)
Anand Lakshminarasimh (1)
Kiranteja Jallepalli (1)
Ravikant Sahu (1)
Rajkiran Swain (1)
Santosh Sarnobat (1)
Rafid Khalid Abdullah (1)
Ramakrishna Basagalla (1)
Henri Hein (1)
Vidya Vrat Agarwal (1)
Senthilkumar (1)
Sameer Shukla (1)
Sriganapathi S (1)
Sachin Kalia (1)
Joel Champagne (1)
Rafnas T P (1)
Rafaelo Condret (1)
Abhishek Duppati (1)
Pankaj Kumar Choudhary (1)
Ashutosh Gupta (1)
Mohan Rathour (1)
Siddharth Vaghasia (1)
John Ritchie (1)
Atul Sharma (1)
Vinodh Narayanan (1)
Prashant Bansal (1)
Vignesh Ganesan (1)
Manpreet Singh (1)
Anil Thakur (1)
Sumit Arora (1)
Nakkeeran Natarajan (1)
Ketak Bhalsing (1)
Related resources for ollections
No resource found
Collections in C#
10/1/2024 9:06:58 AM.
This article describes Collections in C#. A collection is a way to create and manage groups of related objects. The group of objects can grow and shrink dynamically depending on the requirements in th
Python Data Types and Collections
8/22/2024 5:29:00 AM.
Explore Python's essential data types and collections in this comprehensive guide. Learn about fundamental types like integers, floats, and strings, as well as advanced collections such as lists,
Brief Overview of Collection Types in C#
8/20/2024 7:10:00 AM.
Learn how each collection type is used in C# programming for efficient data storage and manipulation. Perfect for beginners and developers looking to strengthen their .NET skills.
Host-Named Site Collections in SharePoint
8/2/2024 8:08:23 AM.
This article explains host-named site collections in SharePoint, detailing their advantages, limitations, and the process for creation. Host-named site collections provide unique DNS names, facilitati
Understanding flatMap in Java
7/23/2024 7:42:33 AM.
The flatMap operation in Java is a powerful tool for transforming and flattening collections. Learn about Java's `flatMap` operation in this article, which maps each element to a stream and flatte
Vector Class and the Stack Class in Java Collections
7/19/2024 6:24:12 AM.
The Vector and Stack classes in Java Collections Framework provide essential tools for managing dynamic arrays and last-in, first-out (LIFO) stacks, respectively.
HashSet Class and TreeSet Class in Java Collections
7/19/2024 6:22:36 AM.
Explore the HashSet and TreeSet classes in Java Collections Framework. Learn how HashSet uses hashing for fast access and TreeSet maintains sorted order through a Red-Black tree.
Using Find Instead of FirstOrDefault with Collections in C# .NET
7/15/2024 8:10:04 AM.
When working with collections in C# .NET, FirstOrDefault and Find serve similar purposes of retrieving elements based on conditions. FirstOrDefault is versatile for any IEnumerable<T>, while Fin
Mastering LINQ: TakeWhile and SkipWhile in C# .NET
7/1/2024 7:03:12 AM.
Explore LINQ's TakeWhile and SkipWhile methods in C#, which enhance data querying by conditionally including or excluding elements based on predicates. Learn how to use these powerful methods to p
Set Interface and Map Interface in java.util Package
6/26/2024 5:12:41 AM.
The Set Interface and Map Interface within the java.util package are fundamental components of Java's Collections Framework. The Set Interface defines a collection that does not allow duplicate el
Understanding the Data Structure Behind HashMap in Java
6/20/2024 9:52:15 AM.
Explore the intricate workings of HashMap in Java, a pivotal data structure in the Java Collections Framework. Understand its mechanism of storing key-value pairs using hashing, handling collisions th
Frozen Collections in .NET 8
6/10/2024 7:00:56 AM.
Frozen Collections in .NET 8" explores the introduction of frozen (immutable) collections in the latest .NET framework. These collections offer performance optimizations and enhanced memory manag
Mongo DB Indexing Strategies with Real-time Scenarios
6/3/2024 9:45:25 AM.
MongoDB, a scalable NoSQL Database, uses indexing to optimize query performance. Indexing involves creating data structures to expedite data retrieval operations on collections, enhancing efficiency.
Dictionary in .NET C#: Syntax, Methods, and Example
5/7/2024 11:50:00 AM.
In C#, a dictionary is a generic collection that holds elements as pairs of keys and values. The Non-Generic Hashtable collection and the Generic Dictionary operate extremely similarly.
HashSet .NET C#: Usage, Methods, and Example
5/3/2024 8:40:37 AM.
A hash set is an unordered list of distinct elements in C#. In.NET 3.5, this collection is released. When we wish to stop duplicate pieces from being added to the collection, we typically utilize it.
Implement Many-To-Many Relationship in C# Class
5/1/2024 11:13:30 AM.
Learn to implement a many-to-many relationship in C# using collections and junction tables. Explore how to model associations between entities, use LINQ queries for retrieval, and leverage tools like
Introducing RX For Collections
4/30/2024 10:45:39 AM.
Discover the power of Reactive Extensions (Rx) for efficient and responsive collection handling. Learn how Rx enables event-driven, asynchronous data processing, transforming collections into dynamic,
Learn Parallel Programming in .NET
4/29/2024 9:57:15 AM.
.NET parallel programming techniques like Task Parallelism and Concurrent Collections. Utilize BlockingCollection to manage concurrent tasks. Explore Task.Factory.StartNew for task creation, Collectio
ConcurrentBag<T> in C#: Thread-Safe Collection Guide
4/23/2024 8:49:54 AM.
In the world of concurrent programming in C#, managing data safely across multiple threads is a paramount concern. In this article, we'll delve into ConcurrentBag<T>, its usage, and provide
Office 365 - SharePoint Central Admin Configuration
4/23/2024 8:25:38 AM.
Configuring SharePoint 2013 Central Administration in Office 365 involves settings for site collections, service applications, timer jobs, and health analysis. It manages farm-wide settings and servic
ConcurrentBag<T> in C#: Thread-Safe Collection for Concurrency
4/23/2024 5:39:26 AM.
Concurrent programming in C# often involves managing shared data among multiple threads. In this article, we'll delve into what ConcurrentBag<T> is, how it works, and when to use it.
Types of Modern Site Collections - SharePoint
4/18/2024 8:13:11 AM.
This Article demonstrate what actually SharePoint Modern Site Collection is and Various types of Modern Site Collection that can be used as per the business needs.
Learn About Collections in Rust
4/17/2024 7:41:13 AM.
In this article, we will explore all types of collections in the Rust Programming Language. Collections are essential in Rust for efficient data management. Arrays hold fixed-size elements, vectors of
Exploring Frozen Collections in .NET 8 With Benchmarking
4/14/2024 5:32:01 AM.
Frozen Collections is a new .NET 8 feature that can be used to create Dictionaries and Sets for faster read operations when you don’t need to make changes after the creation. In this article, I presen
Difference between IEnumerable vs IQuerable
4/1/2024 6:34:21 AM.
Understand the difference between IEnumerable and IQueryable in .NET collections. While IEnumerable is suitable for in-memory collections, IQueryable allows for optimized queries, especially in scenar
Creating Cascading Dropdowns Using Collections in PowerApps
3/2/2024 10:50:25 AM.
We will explore how to create cascading dropdowns using collections in PowerApps without relying on SharePoint lists. Follow the steps to set up and add data to collections, enabling dynamic user inte
Learn SharePoint In Series - Part One - Introduction
2/18/2024 5:21:23 AM.
Learning SharePoint" series aims to transform beginners into SharePoint developers. It covers SharePoint's definition, history, evaluation, and a basic comparison with other platforms. The ar
Learn SharePoint Series - Part Three - Site Collections
2/15/2024 9:57:22 AM.
This article is the third part of the SharePoint series, focusing on Site Collections in both SharePoint Online and On-Premises. It discusses the importance of Site Collections as top-level sites, the
Creating Collections from SharePoint Lists in PowerApps
2/15/2024 9:25:09 AM.
Learn how to utilize collections in PowerApps to manage data within your application, especially useful for scenarios where users may be offline or have limited connectivity. Discover the advantages o
How to Backup/Restore MongoDB Database and Collections
2/11/2024 9:32:02 AM.
Backing up and restoring a MongoDB database and collection with command definition explanation and example as well.
Array Operations in JavaScript
1/17/2024 8:48:51 AM.
Arrays are fundamental in JavaScript, allowing storage and manipulation of collections. Common operations include element access, addition/removal, iteration, built-in methods (map, filter, reduce), s
Concurrent Collections in C#
1/12/2024 7:24:55 AM.
Unlock the power of concurrency in C# with a deep dive into concurrent collections. From ConcurrentDictionary for thread-safe dictionaries to BlockingCollection for versatile blocking operations, mast
Understanding Collection Types in C#
1/9/2024 4:35:29 AM.
Delving into collection types like IEnumerable and IQueryable in C# unveils their impact on data querying efficiency. While IEnumerable offers simplicity for in-memory operations, it might load unnece
NuGet for .NET 8
12/27/2023 5:07:35 AM.
Unleash the power of NuGet for .NET 8! This update revolutionizes package management with enhanced security, centralized dependencies, performance boosters like frozen collections, and productivity to
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
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
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.
C# Tokenizer
9/5/2023 8:26:12 AM.
A simple tokenizer in csharp without using regex or MatchCollections.
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
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.
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
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
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
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.
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 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
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.
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.
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
📚 Python Operators And Literal Collections ✍️
6/10/2021 8:57:49 AM.
In this article, you will learn about Python Operators and Literal Collections.
Dictionary Requires a Model Item of Type System.Collections.Generic.IEnumerable in MVC 3
2/1/2021 7:35:18 AM.
I encountered an error in the implementation of returning multiple models to a single view.
Preparing .NET Interview: Sorted Collections - Part Nine
1/16/2021 11:10:41 AM.
This article presents the common questions related to sorted collections asked in a .NET interview and explains the answers in an easy way.
Concurrent Collections in .NET: ConcurrentQueue - Part Two
11/24/2020 12:43:30 AM.
In this article, you will learn about ConcurrentQueue and how to use it efficiently in software development.
Concurrent Collections in .NET: ConcurrentDictionary - Part One
11/23/2020 8:22:47 AM.
In this article you will learn about concurrent collections and ConcurrentDictionary in detail including how to use it efficiently in software development.
Indexing In-Memory Collections For Blazing Fast Access
11/23/2020 12:23:24 AM.
The CodexMicroORM open source project on GitHub hosts a few useful .NET goodies that can help you write concise code with great performance. In this article I’ll cover a collection type that supports
Collections In .NET
11/12/2020 6:16:35 AM.
Learn about .NET Collections in this article. A .NET collection is a set of similar type of objects that are grouped together. System.Collections namespace contains specialized classes for storing and
Approaching MongoDB Design - Basic Principles
6/25/2020 5:56:29 AM.
In this article, we will go through some basic principles for building a good design for your MongoDB database.
Understanding Generics In C#
4/24/2020 1:28:35 AM.
In this article, you will learn about generics In C#.
MongoDB Collections (Day 4)
3/28/2020 5:34:20 PM.
In this article, you will learn about collections in MongoDB databases.
Implementing C# Generic Collections Using Collection<T>, ICollection<T> With IEnumerator<T>
1/24/2020 7:31:34 PM.
In this article, you will learn how to create your own custom collections using Generic Collections class.
Desktop Fun: Windows 8 Wallpaper Collections Series 2
12/19/2019 11:39:26 PM.
In this article I will show you the Windows 8 Wallpaper Collections Series 2.
Desktop Fun: Windows 8 Wallpaper Collections Series 1
12/19/2019 11:33:02 PM.
In this article I will show you the Windows 8 wallpaper collections series 1.
PowerApps Collections - Learning Part 11
10/4/2019 1:00:58 AM.
In this video article, we will see how to work with Collections in PowerApps. We will check a few functions like ClearCollect, Collect, Remove, UpdateIf.
Learning PowerApps Part 10 - Working With Combo Box
9/24/2019 1:26:52 AM.
In this video article, we will see how to use a Combo box control in PowerApps.
A New Version of Java - Java 8
9/20/2019 5:22:34 AM.
In this article you will learn about java 8 and the features adding to java 8.
How Sorting In Java Collections Work
9/19/2019 1:44:02 AM.
In this article we discuss Sorting in Java collection.
How ArrayList Class In Java Collections Are Used
9/19/2019 12:17:41 AM.
This article describes how the ArrayList class in Java Collections work.
Interfaces of Collections in JAVA
9/13/2019 3:45:59 AM.
Here you will learn about collection interfaces in JAVA.
Get All Site Collections Of Office 365 Tenant In MS Flow
8/8/2019 8:24:39 AM.
In this article, we will learn how to create an MS Flow to get a list of all site collections in the tenant.
Collections in Java
7/19/2019 1:29:43 AM.
This article explains collections and the various flavors of collections in Java. Learn Array List, Vector, Linked List, Hash Set, Tree Set, Linked Hash Set, Priority Queue, Hash Table, Hash Map, Tree
Observable Collections, Data Binding, And Complex Automation In WPF
6/8/2019 4:49:29 PM.
In this article, we are going to touch on Observable Collections, Data Binding, Complex Automation, WPF, and Third Party controls.
All About C# Collections - When To Choose What
2/13/2019 8:52:42 AM.
There has always been confusion among developers when to use which collection. Sometimes, we don’t know about all the available collections and their purpose and consequently, use them incorrectly and
Collections In Ruby On Rails - Part Two
2/7/2019 10:38:37 PM.
In this write-up, we will continue with my previous topic, Collections in Ruby on Rails. We will explore more collections in this part.
Collections In Ruby On Rails
1/30/2019 9:12:19 AM.
In this article, we will see some of the collections in Ruby on Rails, with their syntaxes and example programs.
Retrieve Site Collections And SubSites Using Microsoft Graph API
10/22/2018 11:52:47 PM.
In this article, I have explained how to retrieve the top site collections and subsites using Microsoft Graph API.
SharePoint 2016/2013 Administration - How To Create Host Header Site Collections
5/4/2017 9:51:57 AM.
In this article, we will look into the steps to create host header based Site Collections.
Extending The Retention Period Of Orphaned Personal Site Collections Up To A Year
3/24/2017 10:27:42 AM.
Extending The Retention Period Of Orphaned Personal Site Collections Up To A Year.
How To View All Site Collections In SharePoint 2013 Central Administration
3/3/2017 11:06:26 PM.
In this article, you will learn how to view all the site collections in SharePoint 2013 Central Administration.
Collections In C#
8/7/2016 11:33:21 AM.
In this article, we will learn about the Collections in C#.
Collections in C#
8/5/2016 6:03:34 PM.
Collection in C# is a must-know concept for every developer. This article is about Collections in C#.
Working With SharePoint Site Collections On Office365 Tenant Site Using PnP PowerShell
7/6/2016 4:05:11 PM.
In this article, you will learn how we can create, retrieve, update and delete SharePoint site collections on Office365 tenant sites (Admin sites), using PnP PowerShell.
Create Site Collections And Sites In SharePoint Using PowerShell - Part One
5/27/2016 10:51:11 AM.
In this article you will learn how to create Site Collections and Sites in SharePoint using PowerShell.
- Ebook
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download