C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sumit Deshmukh(11)
Manpreet Singh(8)
Priyaranjan K S(5)
Waqas Sarwar(4)
Prashant Kumar(4)
George (3)
Nakkeeran Natarajan(3)
Ananya Desai(2)
Jitendra Mesavaniya(2)
Manikandan M(2)
Prasham Sabadra(2)
Gowtham Rajamanickam(2)
Swagata Prateek(2)
Aarav Patel(1)
Nidhi Sharma(1)
Tanuj (1)
Sandhiya Priya(1)
Micheal Xavier A (1)
Gautam Singh(1)
Rinki (1)
Rupenkumar Anjaria(1)
Lokendra Singh(1)
Rikam Palkar(1)
Vijay Pratap Singh(1)
Ashutosh Singh(1)
Ajay Kumar(1)
Nikhil Patil(1)
Shiv Sharma(1)
Alpesh Maniya(1)
Ramasagar Pulidindi(1)
Jefferson S. Motta(1)
Jagannath Sethi(1)
Vishal Babuks(1)
Santosh Sarnobat(1)
Abhishek Singhal(1)
Vaishali Vishwakarma(1)
Munib Butt(1)
Varun Setia(1)
Prajnya (1)
Kunj Sangani(1)
Mohammad Irshad(1)
Ram Prasad M(1)
Mukesh Kumar(1)
Sumit Singh Sisodia(1)
Siddharth Vaghasia(1)
Eranda Horanagama(1)
Eddie Gahan(1)
Kaviya Balasubramanian(1)
Siddhesh Chalke(1)
Niloshima Srivastava(1)
Monica Rathbun(1)
Md Tahmidul Abedin(1)
Rajeev Punhani(1)
Mani Gautam(1)
Swatismita Biswal(1)
Debendra Dash(1)
Rajkiran Swain(1)
Juan Francisco Morales Larios(1)
Akhil Mittal(1)
Rafnas T P(1)
Bikesh Srivastava(1)
Ramesh Palaniappan(1)
Siva Krishna Kumar(1)
Resources
No resource found
How to Use Collection Expressions in C# 13 and C# 14
Apr 09, 2026.
Simplify collection initialization in C# 13 & 14 with collection expressions! Boost readability, reduce boilerplate, and enhance productivity. Learn how!
How Does Garbage Collection Work in .NET Core?
Mar 26, 2026.
Master .NET Core's garbage collection! Learn how it manages memory, prevents leaks, and optimizes performance. Discover best practices for efficient apps.
What are Collection Groups in Amazon OpenSearch Serverless?
Mar 20, 2026.
Simplify OpenSearch Serverless management with Collection Groups! Organize collections, enforce consistent security, and scale efficiently. Learn how to optimize your cloud architecture.
Garbage Collection Internals in .NET: How Memory Management Really Works
Mar 03, 2026.
Unlock .NET's garbage collection secrets! Explore generational memory management, LOH behavior, GC modes, and optimization techniques for high-performance C# apps.
How Does Garbage Collection Work in C#?
Jan 15, 2026.
Unlock C#'s automatic memory management! Learn how garbage collection reclaims unused memory, preventing leaks and boosting performance. A must-read for C# developers!
Learn Garbage Collection in C#
Oct 29, 2025.
Learn how Garbage Collection (GC) works in C# ASP.NET WebForms with a practical example. Prevent memory leaks and optimize your web application's performance.
Garbage Collection (GC) in .NET
Jul 05, 2025.
Garbage Collection (GC) in .NET is an automated memory management system that enables us to build reliable applications without constantly worrying about memory allocation and cleanup.
Deploying an NFT Collection on Base: Step-by-Step
Jun 12, 2025.
Learn how to create, mint, and sell a full ERC-721 NFT collection on Base blockchain—a fast, low-cost Ethereum Layer 2—using Hardhat, OpenZeppelin, and IPFS in this beginner-friendly step-by-step guide.
Understanding Garbage Collection and Cyclic References in C#
May 20, 2025.
This article explores .NET memory management, focusing on how the garbage collector handles cyclic references, and how weak references and the `IDisposable` pattern help prevent memory leaks in C# applications.
Brief Overview of Collection Types in C#
Aug 20, 2024.
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.
Garbage Collection (3), C# using statement --- Language support for Dispose
Jun 17, 2024.
This article will discuss the C# using a statement. Garbage collection (GC) in computer science reclaims unused memory automatically. Invented by John McCarthy in 1959, GC simplifies memory management. This series explores GC in .NET, focusing on managed, unmanaged code and the `using` statement for resource management.
Learn Garbage Collection in Python
Jun 17, 2024.
Discover how garbage collection in Python manages memory automatically, preventing memory leaks and optimizing performance. Learn about reference counting, the role of the garbage collector, handling circular references, and best practices for efficient memory management in Python applications.
Streamlining Collection Chunking in .NET 6: .Chunk vs. Methods
Jun 16, 2024.
.NET 6 introduced several new features and enhancements that streamline development in C#. One such feature is the . The chunk method, which provides a simple way to split collections into smaller, manageable parts.
The Simplicity of the New Terse Syntax [ Collection Expressions ]
Jun 03, 2024.
Explore the elegance of the latest terse syntax for collection expressions, offering unparalleled simplicity in programming. Dive into efficient coding techniques, optimized syntax, and enhanced readability, revolutionizing how you interact with collections in programming languages.
Understanding Garbage Collection in .NET Core
May 05, 2024.
Garbage collection (GC) is a fundamental aspect of memory management in modern programming languages like C#. In the context of .NET Core, the GC system plays a crucial role in automatically reclaiming memory that is no longer in use, thereby preventing memory leaks and ensuring efficient memory utilization.
ConcurrentBag<T> in C#: Thread-Safe Collection for Concurrency
Apr 23, 2024.
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.
ConcurrentBag<T> in C#: Thread-Safe Collection Guide
Apr 23, 2024.
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 simple examples to help developers grasp its concepts more effectively.
Why Any() Outperforms Count() in Collection Checks
Mar 06, 2024.
Efficiency in programming is vital, and choosing the right method for tasks is crucial. Explore why Any() often outperforms Count() in specific scenarios with illustrative examples in C#.
Exporting and Importing Site Collection Term Stores In SharePoint
Feb 27, 2024.
Looking to streamline your SharePoint management? Learn how to efficiently export and import Site Collection Term Store Groups! ?? From exporting your Term Store Groups for backup or migration purposes to importing them into new site collections, we'll walk you through the step-by-step process.
How to Create Site Collection in SharePoint Online?
Feb 05, 2024.
How to create a site in SharePoint online. This guide outlines steps from signing in to the SharePoint Admin Center, initiating the creation process, configuring settings, reviewing, and confirming.
Implementation of Collection View in .NET MAUI
Feb 02, 2024.
In this article, I will explain MAUI Collection View implementation using Visual Studio 2022. .NET MAUI Collection View is a view for presenting lists of data using different layout specifications. Collection View should be used for presenting lists of data that require scrolling or selection.
Understanding Collection Types in C#
Jan 09, 2024.
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 unnecessary data. IQueryable optimizes query execution by fetching only required data, which is beneficial, especially with extensive datasets or remote sources.
What is Collection Expressions in C# 12?
Jan 03, 2024.
Forget the days of writing mountains of code just to create simple lists or arrays. C# 12 unleashes collection expressions, your new superpower for crafting collections with ease and elegance. This friendly guide demystifies the magic behind these expressions, even if you're a coding newbie.
Advanced Garbage Collection Potential
Oct 25, 2023.
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 system equipped with x64 architecture and an abundance of RAM, the application consistently failed, unable to handle the processing load.
Garbage Collection in C#
Sep 08, 2023.
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 leaks and ensures efficient memory utilization by tracking and deallocating objects that are no longer reachable or referenced by the program. The .NET runtime provides an automatic garbage collector that runs in the background, making it easier for developers to work with memory without having to explicitly free memory resources like in languages with manual memory management, such as C and C++. This automated process helps improve code safety and reduces the risk of memory-related errors.
Postman - Environment, Collection And Monitors
Jan 04, 2023.
In this article, you will learn about Postman Environment, Collection and Monitors.
SharePoint Online - How To Copy Site To Different Tenant/Site Collection Using PowerShell
Sep 28, 2022.
In this article, we will learn how to copy a SharePoint site schema from one site collection or tenant to another using PowerShell.
Three Cursors In Collection Framework
Jun 15, 2022.
In this article, you will learn about cursor in the collection framework.
Events On Collection (List) In C#
May 17, 2022.
Events on Collection using List. The Application example shows how to add Events on Different Methods of List in C#.
Implement The Dynamic Collection View In Xamarin.iOS
Feb 03, 2022.
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 collection view presents items onscreen using a cell, which is an instance of the UICollectionView class that your data source configures and provides. Data in the collection view is organized into individual items, which you can group into sections for presentation. An item is the smallest unit of data you want to present The collection view gets its data from the data source object, stored in the collection view’s Data Source property.
The New PriorityQueue Collection In .NET 6
Aug 05, 2021.
In this article, you will learn about the new PriorityQueue collection in .NET 6.
New Generic Collection In .NET 6 - A Priority Queue
Jun 17, 2021.
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
Jun 14, 2021.
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 in the design of Application.
Garbage Collection (2), Manage UnManaged Code
Feb 18, 2021.
Discuss the garbage collection with unmanaged code: How to manage the unmanaged code in .NET, Dispose pattern
Garbage Collection (1), Manage Managed Code
Feb 15, 2021.
Discuss the garbage collection with managed code: what is the process of the memory management of .NET in this article, while in (2) I will discuss How to manage the unmanaged code in .NET
Use PnP JS To Fetch List Items From Other Site Collection In SharePoint Online
Aug 03, 2020.
This article will help us fetch data from other site collection using PnPJs.
Office 365 - Get List Of All Hub Sites Along With Associated Sites Collection In A Tenant
Jan 22, 2020.
In this article, you will learn how to get list of all hub sites along with associated sites collection in a tenant.
Garbage Collection - Dispose Vs Finalize And IDisposable Pattern
Oct 29, 2019.
Explore Finalize, Destructor, IDisposable pattern in C# for managing unmanaged resources. Learn about memory management, Garbage Collector behavior, and IDisposable interface. Implement IDisposable for efficient memory cleanup and use Using block for automatic disposal, optimizing performance.
Invoke-SPOSiteSwap - Swap Or Move Your SharePoint Online Root Site Collection With Another Site
Aug 13, 2019.
This article explains the new SharePoint Online Management Shell command, Invoke-SPOSiteSwap, which can be used to move your communications site to the root site collection of a tenant.
Understanding Garbage Collection In .NET
Jul 24, 2019.
In this article, we will learn how Garbage Collection works, with an example demonstrating different variable types and their scopes.
Xamarin.Forms 4.0 Collection View
Jul 15, 2019.
In this article, you will learn about Collection View in Xamarin Forms 4.0.
Enable Site Collection App Catalog For Particular Site Collection Level Solution/Features
Jun 17, 2019.
In this article, you will learn how to enable a site collection app catalog for a particular site collection level solution/ features.
Garbage Collection In Java
May 12, 2019.
In this article, you will learn about garbage collection in Java.
CrossRefCollection - Add A Multi-Dimensional Dictionary Collection To The Language
Jan 10, 2019.
I’m building a library to identify audio encodings used in a byte stream and there’s a lot of look-up tables required to determine bit rates, sample sizes, and so on. So, I decided to build a little extension to System.Collections.Generic that creates a multi-dimensional Dictionary collection that allows for strongly typed row/column keys and data values accessing data by a multi-parameter indexer function.
Get All SharePoint Site Collection Usage Details Using Graph API
Dec 10, 2018.
In this article, we will see the steps to check all the SharePoint site collection usage details using Graph API. The process is quite simple; just follow along.
Overview Of Composite Collection In WPF
Nov 04, 2018.
Recently in our project, which is based on WPF framework, we wanted to use ItemsControl to list out different types of objects. I couldn’t use general List, ObservableCollection or any other type of collection for that matter to set ItemSource of ItemsControl, since they restrict only one type of object. Thus, I searched on the internet and found out about CompositeCollection. In this article I am going to explain how to use CompositeCollection to list out different types of objects in WPF.
Garbage Collection In .NET
Oct 15, 2018.
In .NET framework, each and every type identifies some resources which are available for the program’s use. To use these resources, memory needs to be allocation which represents the type.
SQL Server Data Collection And Management Data Warehouse
Oct 04, 2018.
Explore the built-in SQL Server Data Collection tool for system monitoring. Learn setup steps for Management Data Warehouse, access control via roles, and monitoring data collection using SQL Agent and SSIS. Access reports for insights.
How To Enable App SideLoading On Your Non-Developer Office 365 Site Collection On Azure
Jul 14, 2018.
Learn how to enable App SideLoading on your non-developer Office 365 site collection using SPO Management Shell. Follow step-by-step instructions to deploy SharePoint apps directly to your site, bypassing standard governance controls. Perfect for developers looking to streamline app testing and deployment.
SharePoint Site Collection App Catalog Feature
May 29, 2018.
Details about SharePoint Site Collection App Catalog Feature and the process to enable and disable it
Working With Project Collection In TFS
May 07, 2018.
In this article, we will see what a collection is and how to create a new collection.
How To Create A Site Collection in SharePoint Online
Jan 15, 2018.
A site collection is the group of websites under a common top-level site with the same owner on the site administrator. To create a site collection for deleting a site collection in Office 365 is easy to do.
Create Site Collection In SharePoint Online Using PowerShell
Jan 13, 2018.
In my last article, I have demonstrated about how to create Site Collection in SharePoint Online Using GUI, today I am demonstrating “Create Site Collection in SharePoint Online Using PowerShell”.
Office 365 - SharePoint Online - Site Collection Administrators
Jan 02, 2018.
In this article, we will discuss the role of site collection administrators in SharePoint online sites.
Using Collection In Kotlin
Jan 02, 2018.
Collections are used to store groups of related Objects in memory. Like java, kotlin also supports collection frameworks.
Change Site Collection URL, Title, Logo In SharePoint 2013 Using PowerShell Commands, Back Up And Restore Option
Oct 05, 2017.
In this article I have discussed about how to change the site collection URL, title & logo in SharePoint 2013. Suppose in your company you have already created your site collection & customized everything but later your company decided to change the Site URL & title as well.
Object Initializers And Collection Initializers - A Syntactic Sugar In C# 3.0
Jun 04, 2017.
Object Initializers And Collection Initializers - A Syntactic Sugar In C# 3.0.
Create A Community Portal Site Collection In Office 365 (SharePoint Online Site)
May 20, 2017.
Create a Community Portal Site Collection In Office 365 (SharePoint Online site).
Create A Basic Search Center Site Collection In Office 365 (SharePoint Online Site)
May 19, 2017.
Create a basic Search Center Site Collection in Office 365 (SharePoint Online Site).
Create A Visio Process Repository Site Collection In Office 365 (SharePoint Online Site)
May 19, 2017.
Create A Visio Process Repository Site Collection In Office 365 (SharePoint Online Site).
How To Create A Site Collection In SharePoint 2013
May 19, 2017.
How to create a Site Collection in SharePoint 2013.
Create A Review Center Site Collection In Office 365 (SharePoint Online Site)
May 17, 2017.
Create a Review Center Site Collection in Office 365 (SharePoint Online Site).
Create An Enterprise Search Center Site Collection In Office 365 (SharePoint Online Site)
May 17, 2017.
Create an Enterprise Search Center Site Collection In Office 365 (SharePoint Online Site).
Create A Business Intelligence Center Site Collection In Office 365 (SharePoint Online Site)
May 16, 2017.
In this article, you will create a Business Intelligence Center Site Collection in Office 365 (SharePoint Online site).
Create A Records Center Site Collection In Office 365 (SharePoint Online Site)
May 16, 2017.
Create A Records Center Site Collection In Office 365 (SharePoint Online Site).
Create A Blog Collection In Office 365 (SharePoint Online Site)
May 15, 2017.
This article enables you to create a blog collection in Office 365 (SharePoint Online Site).
Create A Team Site Collection In Office 365 (SharePoint Online Site)
May 15, 2017.
In this article, you will learn to create a team site collection in Office 365 (SharePoint Online Site).
Create An eDiscovery Center Site Collection In Office 365 (SharePoint Online Site)
May 14, 2017.
Create An eDiscovery Center Site Collection In Office 365 (SharePoint Online Site).
Create Compliance Policy Center Site Collection In SharePoint 2013 Office 365
Apr 28, 2017.
This article helps you to create Compliance Policy Center Site Collection in SharePoint 2013 Office 365.
Create eDiscovery Center Site Collection In SharePoint 2013 Office 365
Apr 28, 2017.
This article allows you to create eDiscovery Center Site Collection in SharePoint 2013 Office 365.
Visual Studio Collection Visualizers
Apr 11, 2017.
This article imparts knowledge on Visual Studio Collection Visualizers.
Custom Collection Classes In C#
Apr 06, 2017.
This article presents an overview of custom collection classes in C#.
Overview Of List Collection Class In C#
Mar 28, 2017.
Overview Of List Collection Class In C#. List<T> class represents a strongly typed list of objects that can be accessed by index. List<T > is one of the generic collection classes; it is present in System.Collections.Generic namespace.
Self - Service Site Collection Management In SharePoint 2013 Central Administration
Mar 12, 2017.
In this article, we will see how to perform self-Service site collection management in SharePoint 2013 Central Admin.
Migrate Reusable SharePoint Online Designer Workflows From One Site Collection To Another
Mar 06, 2017.
In this article, you will learn how to migrate reusable SharePoint Online Designer Workflows from one site collection to another.
Copy List Items From One SharePoint Site Collection To Another Using Azure Logic App
Feb 28, 2017.
In this article, you will learn how to copy a list item from one SharePoint site collection list to another site collection list, using Azure Logic app.
Configure Usage And Health Data Collection In SharePoint 2013 Central Administration
Feb 21, 2017.
In this article, we will see how to configure usage and health data collection in SharePoint 2013 Central Admin.
How To Import Site Collection And Export The Same To New CSV For Each SC In SharePoint
Feb 17, 2017.
In this article, you will learn how to import a site collection and export the same to new CSV for each site collection in SharePoint.
Self-Service Site Collection Management In SharePoint 2013 Central Administration
Jan 27, 2017.
In this article, you will learn about Self-Service Site Collection Management in SharePoint 2013 Central Administration.
Site Collection Quotas And Locks In SharePoint 2013 Central Administration
Jan 26, 2017.
In this article you will learn about site collection quotas and locks in SharePoint 2013 central administration.
SharePoint 2016 Central Admin - Application Management - Change Site Collection Administrators
Jan 26, 2017.
In this article, you will learn how to change Site Collection Administrators in SharePoint 2016 Central Admin.
Configure Site Collection Administrators In SharePoint 2013 Central Administration
Jan 25, 2017.
In this article, you will learn how to configure site collection Administrators in SharePoint 2013 Central Administration.
SharePoint 2016 Central Admin - Backup And Restore - Perform A Site Collection Backup
Jan 23, 2017.
In this article, you will learn how to perform a Site Collection Backup in SharePoint 2016 Central Admin.
Create A Site Collection In SharePoint 2013 Central Administration
Jan 22, 2017.
In this article, you will learn how to create a site collection in SharePoint 2013 central administration.
Delete A Site Collection In SharePoint 2013 Central Administration
Jan 22, 2017.
In this article, you will learn how to delete a site collection in SharePoint 2013 Central Administration.
Importing Api List From Swagger And Introduction To Collection In Postman
Jan 09, 2017.
In this article, you will learn how to import API list from Swagger and an introduction to collection in Postman.
Managing Site Collection Administrators In Office 365 SharePoint Site
Jan 09, 2017.
In this article, you will learn how to add and remove primary site collection administrator and site collection administrators in office 365 SharePoint site.
Deep Dive Into C# - Garbage Collection And Disposal - Part Two
Dec 27, 2016.
An in-depth discussion covering dispose pattern, finalizers, and handling unmanaged resources in C#.
Deep Dive Into C# - Garbage Collection And Disposal - Part One
Dec 27, 2016.
A primer on garbage collection and disposal theories in .net.
How To Grant Anonymous Access To Site Collection Or Site Page At SharePoint Online
Dec 13, 2016.
In this article, you will learn how to grant anonymous access to site collection or site page at SharePoint online.
SharePoint 2016 Rename Site Collection URL Best Practices
Dec 12, 2016.
In this article, you will learn about the best practices for renaming the site collection URL in SharePoint 2016.
Add Site Collection Administrators In SharePoint Using PnP Core Component
Nov 29, 2016.
In this article you will learn how to Add Site Collection Administrators in SharePoint using PnP Core Component.
Add/Retrieve Site Collection Admins To/From SharePoint Online Site Using PnP Core CSOM Library
Oct 24, 2016.
In this article, you will learn how to retrieve and add site collection administrators from/to SharePoint online sites, using PnP Core CSOM library.
Fast Site Collection Creation Feature In Sharepoint Server 2016
Sep 23, 2016.
In this article you will learn about the fast Site Collection creation feature in Sharepoint Server 2016.
Site Collection Features Operations In SharePoint 2016 Using REST API
Sep 22, 2016.
In this article, you will learn about Site Collection Features Operations in SharePoint 2016, using REST API.
Copy List Item Across Site Collection In SharePoint 2016 Using Nintex Workflow
Sep 18, 2016.
In this article, you will learn how to copy list Item across Site Collection in SharePoint 2016, using Nintex Workflow.
Approaches For Showing The Tasks Assigned To The Logged In User From The Current Site Collection Using Office 365 And SharePoint Online
Sep 02, 2016.
In this article, I am going to show the various approaches, their pros and cons to show the tasks, assigned to the current user, across the site collection.
Configure SharePoint Site Collection Audit Settings Programmatically Using C# Client-Side Object Model (CSOM)
Aug 05, 2016.
In this article, you will learn how to configure SharePoint Site Collection Audit Settings programmatically, using C# Client-Side Object Model (CSOM).
Site Collection Manipulation Using PnP-Core JS
Aug 05, 2016.
In this article, we will learn about the available properties of Site Collection, how to update values for them, delete Site Collection, and create sub sites
Retrieve SharePoint Site Collection Content Types Using PnP JavaScript Library
Aug 04, 2016.
In this article, you will learn how to perform the basic content type read operations on SharePoint site collections, using PnP JavaScript Core Library.