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]
Saurav Kumar(5)
Ramees (4)
Vipul Malhotra(3)
Khoday Akilesh(3)
Munib Butt(3)
Sumit Kharche(3)
Aravind Govindaraj(2)
Jaimin Shethiya(2)
Jaydeep Patil(2)
Allen Oneill(2)
Alagunila Meganathan(2)
Jignesh Trivedi(2)
Gowtham K(2)
Vidyadharran G(2)
Sandhiya Priya(2)
Varun Setia(2)
Prasad Phakade(1)
Rijwan Ansari(1)
Pankajkumar Patel(1)
Rajesh Gami(1)
Aarav Patel(1)
Sandeep Mishra(1)
Gunasekaran Palani(1)
Arun Potti(1)
Ishoo Anyal(1)
Farhan Ahmed(1)
Amar Srivastava(1)
Ashok Purty(1)
Debasis Saha(1)
Akhil Mittal(1)
Akshay Patel(1)
Ankit Sharma(1)
Sriram Hariharan(1)
Ganesh Sattawan(1)
Mahender Pal(1)
Anmol Badaya(1)
Rahul Sahay(1)
Kamal Rawat(1)
Richa Garg(1)
Abhishek Dubey(1)
Vulpes (1)
Jean Paul(1)
Shivprasad (1)
Ananya Desai(1)
Nidhi Sharma(1)
Farrukh Rehman(1)
Baibhav Kumar(1)
Kripanshu Kumar(1)
Muhammad Imran Ansari(1)
Vitalii Honcharuk(1)
Ayush Gupta(1)
Jitendra Mesavaniya(1)
Ashutosh Singh(1)
Naveen Kumar(1)
Jaydeep Suryawanshi(1)
Abhishek Mishra(1)
Dhairya Krishnat(1)
Sanjay Mrinal Kumar Kodangi(1)
Usman Sheikh(1)
Vijay Kumari(1)
Herve Roggero(1)
Ashka Soni(1)
Manoj Kalla(1)
Rahul Prajapat(1)
Harpreet Singh(1)
Selva Ganapathy(1)
Aravind Bs(1)
Reeta Singh Lodhi(1)
Yogesh Jaiswal(1)
Alexander Filatow(1)
mercy_gp (1)
john donell(1)
Caonabo Ruiz(1)
Riya Patel(1)
Priya Prajapati(1)
Resources
No resource found
Difference Between Stack and Queue and When to Use Each?
Apr 03, 2026.
Unlock the power of data structures! Learn the difference between Stack (LIFO) and Queue (FIFO) with examples, use cases, and practical applications. Master efficient problem-solving!
Amazon Simple Queue Service (SQS)
Mar 05, 2026.
Amazon SQS: A fully managed message queue service for decoupling microservices and enabling reliable asynchronous communication in AWS. Boost scalability!
Dead Letter Queue in Azure Service Bus: From Concept to Production
Mar 05, 2026.
When building cloud-native solutions on Azure—especially event-driven or message-based systems—we rely heavily on asynchronous communication. Services publish messages, downstream services consume them, and the system scales independently.
How to Send and Receive Messages from Azure Queue Storage using .NET Client Library?
Jan 29, 2026.
Learn how to send and receive messages from Azure Queue Storage using the .NET client library. This tutorial covers resource creation, role assignment, and .NET code.
Creating a SQL-Based Notification System (Trigger + Queue Table)
Nov 18, 2025.
Build a robust SQL notification system using triggers and a queue table. Centralize data event tracking, enabling real-time alerts and asynchronous workflows. Includes practical scripts and architecture.
How to Implement a Circular Queue Using Arrays
Oct 07, 2025.
Learn how to implement a Circular Queue in C# using arrays! This data structure efficiently manages memory by wrapping around, preventing wasted space common in linear queues. Discover the enqueue, dequeue, and display operations with clear code examples. Explore real-world applications like CPU scheduling and memory buffering. Master the concept of wrap-around and modulo arithmetic for effective queue management. Optimize your data handling for scheduling and real-time applications.
How to Automatically Notify in Outlook When a Job Queue Fails in Business Central
Jul 26, 2025.
Managing job queues in Dynamics 365 Business Central can be seamless, until one fails. Job queue failures can impact automated processes, reporting tasks, and system integrations. The earlier you’re notified, the faster you can act.
NATS Message Queue Authentication
Dec 11, 2024.
How to set Authentication and Authorisation in the NATS Message Queue. Explore NATS authentication techniques, including Username/Password, Tokens, NKEY, JWT, and custom methods. Understand security hierarchies and implementation practices.
Azure service bus queue with .net core and python
Oct 20, 2024.
This article demonstrates how to implement Azure Service Bus queues using both .NET Core and Python. It covers creating a message sender with a web API in .NET Core and a receiver using a console app.
Learning Priority Queue in Python
Oct 03, 2024.
A Priority Queue in Python can be implemented using the heapq module, which provides efficient min-heap operations like heappush, heappop, and heapreplace. Unlike a regular queue, a priority queue processes elements based on priority, ensuring the smallest element is dequeued first.
Learn about Priority Queue in C# with examples
Mar 27, 2024.
Learn more about queues and priority queues in C# with practical examples and methods like Enqueue, Dequeue, Peek, Count, Clear, and more. Dive into efficient data structure management.
Learn about Queue in C# with examples
Mar 21, 2024.
In this article, we will explore Queue data structure in C#, facilitating FIFO (First In, First Out) operations. Utilize methods like Enqueue, Dequeue, and Peek for efficient data manipulation.
An Overview about NATS JetStream Queue Mechanism
Jan 04, 2024.
NATS JetStream is a lightweight and high-performance messaging system that acts as a distributed messaging queue. Explore the lightweight and high-performance NATS queue mechanism. Learn about NATS JetStream's features for guaranteed message delivery, durability, and persistence, comparing it with other message queue platforms. Find insights into NATS topology and persistence layer options.
Building an Azure Queue Trigger Function for Sending Emails with Nodemailer
Dec 22, 2023.
In today's digital age, automated processes are essential for improving efficiency and productivity. One such automation is sending emails based on events or triggers. In this blog post, we'll explore how to create an Azure Queue Trigger Function using Node.js and Nodemailer to send emails when a message is added to an Azure Storage Queue.
Learn to Receive Messages from Service Bus Queue to Postman
Nov 20, 2023.
Learn to Receive Messages from the Service Bus Queue to the Postman. This article provides a detailed walkthrough on configuring permissions for Azure Service Bus to enable message retrieval using Postman. It commences with an introduction to configuring permissions for the Service Bus. Subsequently, it outlines the steps for receiving messages via Postman.
How to set up Service Bus Queue Messages using Service Bus Explorer
Nov 15, 2023.
In this article, we will learn to Setup Service Bus Queue Message using Service Bus Explorer.
Azure Service Bus implementation using .NET Core 6 and Queue Trigger to fetch messages
Jan 23, 2023.
Azure Service Bus implementation using .NET Core 6 and Queue Trigger to fetch messages.
How To Create Azure Service Bus And Queue In Microsoft Azure Portal
Jan 14, 2023.
Step by Step process to Create Azure Service Bus and a Queue from the Microsoft Azure Portal
Pushing Messages To Azure ServiceBus Queue From Azure Pipeline
Aug 29, 2022.
This is about pushing payloads to azure services bus queue from any pipeline using powershell script
How To Send Queue Message To Azure Service Bus Using ASP.Net Core MVC 6
Aug 28, 2022.
In this article, we will learn how to send message to azure service bus using ASP.NET core MVC 6. Before starting this, you can through below article link to understand service bus.
RabbitMQ Message Queue Using .NET Core 6 Web API
Jul 25, 2022.
In this article, you will learn about RabbitMQ Introduction and Implementation using .NET Core 6 Web API.
Using Azure Queue Storage With Python
Mar 04, 2022.
Hands on getting started with Azure storage queues using Python!
Create Azure Function - Queue Trigger In Visual Studio
Jan 01, 2022.
This article will help you learn how to create Azure Function – Queue Trigger in Visual Studio.
Create Azure Function - Queue Trigger In Azure Portal
Dec 27, 2021.
This article will help you learn how to create Azure Function – Queue Trigger in Azure Portal.
Amazon Simple Queue Service Using C#
Aug 04, 2020.
This article will help the devs to write and configure this SQS at their projects.
Azure Service Bus And Queue Implementation Using C#
Jul 27, 2020.
Implement Azure Service Bus and queue in C# for robust messaging and asynchronous communication in cloud applications. Utilize QueueClient for efficient message handling, ensuring scalability, reliability, and seamless integration in enterprise environments with .NET and Azure's powerful messaging infrastructure.
Implement Azure Queue Using ASP.NET Core Console Application
Jun 03, 2020.
Learn to utilize Azure Queue Storage for efficient message queuing in cloud applications. Explore Azure Queue's RESTful interface, its advantages like cost-effectiveness and security, along with disadvantages such as lack of ordered message retrieval. Follow step-by-step instructions to create, manage.
Working With Queue Storage Trigger Azure Functions
Jun 14, 2019.
In this article, you will learn about working with Queue Storage Trigger Azure Functions
Blob Triggers And Queue Storage Trigger Azure Functions
Jun 06, 2019.
In this article, you will learn about Blob Triggers and Queue Storage Trigger Azure Functions.
Working With Queue - Azure Service Bus
May 14, 2019.
In this article, I have explained about Queue in Azure Service Bus.
Integrate Azure Queue Storage In Azure Functions
Jan 15, 2019.
In this article, you will learn how to create an Azure Function using HTTP trigger template and integrate it with Azure Queue Storage.
Azure Service Bus - Working With Queue In A Real World Scenario
Oct 26, 2018.
This article explains the real-world business requirement and how Azure Service Bus Queue helps to fulfill it.
Retrieve A Batch Of Messages - Understanding Queue Storage - Part Four
Jun 16, 2018.
In this article, we will see how to retrieve a batch of messages from Queue Storage
Retrieving Messages - Understanding Queue Storage - Part Three
Jun 15, 2018.
In this article, we will see how to retrieve a message from Queue Storage
Inserting Messages - Understanding Queue Storage - Part Two
Jun 14, 2018.
In this article, we will see how to insert a message in Azure Queue Storage.
Creating Storage Account And Queue - Understanding Queue Storage - Part One
Jun 12, 2018.
In this article, first, we will create a storage account and have the keys to use it in our application and then a console application, which connects to the storage account and create a queue inside it.
Implementation Of Stack And Queue Using Linked List
Nov 02, 2017.
In this article, I will be discussing two data structures - Stack and Queue and their implementation using another data structure - Linked List.
Azure Service Bus - Peek-Lock A Message From Queue Using Azure Logic Apps
Oct 26, 2017.
In this article, we will take a look at how you can peek-lock on a message from a Service Bus Queue without actually reading the message from the queue.
Basics Of Queue Storage
May 19, 2017.
In this article, I will explain the basics of Azure Queue storage. Azure Queue storage is a Service to store large numbers of messages, which can be accessed from anywhere, using HTTP or HTTPS. A single Queue storage contains many messages and from this article, I will explain how to write the code with .NET for Azure Queue storage to insert and delete a queue.
Azure Function Binding With Azure Queue And Azure Table
Jul 19, 2016.
In this article we will learn how to bind Azure services as Azure queues (storage queues) and Azure tables (storage tables) with Azure functions.
Set Up Support Queue Using Hybrid Email Integration In CRM 2016
Feb 17, 2016.
This article is about setting up support queue and email integration in Dynamics CRM 2016.
Deep Dive into Azure Storage Queue vs Azure Service Bus Queue
Aug 26, 2015.
This articles provides a deep dive into Azure Storage Queues vs Azure Service Bus Queues.
Stack and Queue in a Nutshell
Jul 09, 2015.
In this article we will learn Atack and Queue in a nutshell.
Transactional Queue in .NET
Sep 26, 2012.
Transactional Queue in .NET facilitates reliable message processing with transactional integrity. Ensure data consistency and fault tolerance in distributed systems, leveraging the robust messaging capabilities of the .NET framework.
C# Queue Tutorial
Jun 01, 2012.
Learn how to efficiently manage data using queues in C#. This comprehensive tutorial covers the basics of the Queue data structure, including enqueue and dequeue operations, practical examples, and best practices. Perfect for beginners and seasoned developers looking to enhance their C# skills.
Priority Queue in Java
Mar 26, 2012.
In this article, I am going to describe how the priority queue is developed in Java.
Implementing a Double-Ended Queue (or Deque) in C#
Nov 28, 2011.
In this article I will be demonstrating an implementation of a Double-Ended Queue (or Deque) in C#.
Windows Azure - Create Queue in Storage Account
Oct 21, 2011.
In this article we can explore the queue creation in storage account.
7 simple steps to run your first Azure Queue program
Feb 11, 2010.
Azure queues help to communicate data between web role and worker role. Web roles are nothing but web application which can be accessed by the end browser.
Amazon SQS Explained: Building Reliable Message Queues
Jun 03, 2026.
Learn Amazon SQS with real-world examples. Understand Standard Queues, FIFO Queues, Dead Letter Queues, and build reliable message-driven applications.
How to Implement Background Jobs in Node.js Using Bull Queue
Mar 24, 2026.
Learn how to implement background jobs in Node.js using Bull Queue! This tutorial covers setup, job creation, error handling, and scaling for efficient task management.
How to Implement Message Queues Using Apache Kafka in Distributed Systems
Mar 17, 2026.
Implement message queues in distributed systems using Apache Kafka. Improve scalability, reliability, and performance with asynchronous communication. Learn producers, topics, and consumers.
How to Implement Message Queues in Distributed Systems?
Mar 09, 2026.
Discover how message queues enhance distributed systems by enabling asynchronous communication, boosting scalability, reliability, and performance. Learn key implementation steps.
How to Implement Message Queues in Distributed Applications?
Mar 06, 2026.
Discover how message queues enhance distributed applications! Learn about asynchronous communication, improved scalability, and reliable messaging for robust systems.
Deque (Double Ended Queue) in DSA – Simple Explanation with Examples
Jan 20, 2026.
Master the Deque (Double-Ended Queue) data structure! Learn its operations, real-world uses, and how it differs from queues and stacks. Ace your DSA interviews!
🧱 Lesson 7 - Message Queues with RabbitMQ
Dec 22, 2025.
Master asynchronous communication in .NET using RabbitMQ! Learn to implement message queues for improved performance and scalability in your microservices architecture.
List, Dictionary, Queue, and Stack
Oct 29, 2025.
Learn C# collections (List, Dictionary, Queue, Stack) with ASP.NET Web Forms! This tutorial provides practical examples and real-time use cases for each collection type.
Understanding Stacks and Queues in Data Structures
Oct 11, 2025.
Unlock the power of Stacks and Queues! This guide explores these fundamental data structures, explaining their LIFO (Stack) and FIFO (Queue) principles with real-world examples. Learn about operations, Python implementations using lists and deque, and discover their diverse applications in undo/redo features, task scheduling, and more. Master these concepts for advanced programming!
Why Node.js is Non-Blocking: Event Queue, Loop, and Emitters Explained
Jul 01, 2025.
Have you ever wondered how Node.js can handle thousands of users at once, all while running on a single thread? The secret lies in its non-blocking, event-driven architecture-powered by the event loop, event queue, and EventEmitter.
Best Practices for Azure Blob, Table, Queue, File Storage with C#
May 11, 2025.
Azure Storage provides scalable solutions for unstructured and structured data. It includes Blob, Table, Queue, and File Storage, offering features like tiering, lifecycle management, security, and cost optimization for efficient data handling.
Modernizing RabbitMQ: Migrating from Classic to Quorum Queues for High Availability and Compliance
Apr 28, 2025.
Learn how to modernize your RabbitMQ messaging by migrating from Classic Queues to Quorum Queues.
Azure Service Bus Queues - The Microservices Powerhouse
Apr 11, 2025.
Unlock the power of seamless communication in microservices with Azure Service Bus Queues. Learn how this reliable messaging service enables decoupled, scalable, and resilient architectures, making it a vital tool for building modern distributed applications in the cloud.
Understanding Azure Messaging Queue
May 30, 2024.
Explore the power of Azure Messaging Queue in this comprehensive guide. Learn how to leverage Microsoft's cloud computing platform for efficient message queuing, scalability, and building event-driven architectures.
Exploring the ConcurrentQueue<T> Class in .NET C#
Apr 22, 2024.
In multi-threaded programming, thread safety and efficient data sharing are critical considerations to ensure smooth and reliable application execution. This article dives into the features, usage, and benefits of the ConcurrentQueue<T> class in .NET C#.
Queue & Dequeue with Concurrent Dictionary in .NET Core
Apr 20, 2024.
In multi-threaded applications, efficient handling of concurrent data structures is crucial to ensure thread safety and performance. While .NET Core provides a variety of thread-safe collections, each with its own strengths and use cases, there are scenarios where we might need to implement queue and dequeue functionality.
Solution: Mail not queued. Database Mail is stopped
Oct 11, 2023.
Database Mail is a feature in SQL Server that allows you to send email messages from the SQL Server database engine. It can be a crucial tool for alerting and notifications within a database system. However, sometimes, Database Mail might stop working due to various reasons such as configuration issues, service failures, or network problems.
Learn Azure Service Bus Queues
Oct 03, 2023.
The topic of the Service Bus Queue Trigger will be covered in this article.
Receiving Azure Service Bus Messages Using Queues
Apr 06, 2022.
Receiving Azure Service Bus Messages using Queues used by Enterprises
Azure Queues - An Introduction
Feb 21, 2022.
If you ever wondered what Azure queues are, here is where you need to start!
Azure Service Bus (Queue & Topic) Overview
Jan 12, 2022.
This article will help you to understand end to end implementation of Azure service bus 'Queue' and 'Topic'. Along with 'Queue' and 'Topic', this article also guide you how to use 'Service Bus Explorer'.
Terraform On Azure - Creating A Storage Account, Blob Container And Queue
Oct 19, 2021.
In this article we will learn how to create an Azure Storage Account, Blob Container and Storage Queue using Terraform.
Using The EnsureCapacity Method In C# Lists, Queues And Stacks
Aug 23, 2021.
In this article, you will learn how to use the EnsureCapacity method in C# Lists, Queues and Stacks.
Azure Queues And Serverless Functions
Aug 16, 2021.
In this article, you will learn about Azure Queues and Serverless Functions.
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.
What Is Azure Queue
Mar 30, 2021.
In this article, you will learn about Azure Queue.
How to Send & Read Messages with Azure Service Bus Queues in Azure Functions
Jan 25, 2021.
Learn to efficiently manage message communication in Azure using Azure Functions. Discover how to send and read messages from Azure Service Bus queues seamlessly, leveraging the power of serverless computing for scalable and responsive message processing.
Getting Started With Azure Service Bus Queues And ASP.NET Core Background Services
Dec 15, 2020.
Begin using Azure Service Bus Queues with ASP.NET Core Background Services for efficient message processing. Configure message handlers, retry policies, and dead-letter queues, leveraging ASP.NET Core's dependency injection and Azure SDK for seamless integration.
Using Message Queues In C#
Dec 14, 2020.
In this article, Learn how to implement message queues for asynchronous communication in C# using the System. Messaging namespace, specifically focusing on MSMQ (Microsoft Message Queuing).
Getting Started With Azure Service Bus Queues And ASP.NET Core - Part 1
Dec 07, 2020.
Explore the fundamentals of Azure messaging services, setting up queues, and leveraging the Azure SDK for . NET. Discover queue-based messaging techniques for reliable and scalable communication in cloud applications.
Creating Azure Service Bus Queues And Sending Messages To Queues
Nov 23, 2020.
Service buses facilitate decoupling of applications/services via messaging queues. Queues created through Azure Portal or Service Bus Explorer. Settings like Enable Sessions and Dead Lettering enhance functionality. Configuration via Microsoft.Azure.ServiceBus. SendMessageAsync method sends messages.
Creating Azure WebJobs To Parse Message From Azure Storage Queues
Jan 03, 2020.
In this article, you will learn how to utilize Azure WebJobs to efficiently process messages from Azure Storage Queues. Explore background processing, message parsing, and event-driven architecture in Azure Functions for seamless cloud computing.
Queue Interface in Java
Nov 06, 2019.
A Queue is designed in such a way so that the elements added to it are placed at the end of Queue and removed from the beginning of Queue. The Queue interface is based on the basic principle of last-in-first-out.
Abstracting Azure Service Bus And Azure Queues To Send Messages
Aug 13, 2019.
Abstracting Azure Service Bus and Azure Queues simplify message sending by providing high-level interfaces. This allows seamless integration with Azure's messaging infrastructure, enabling efficient communication, asynchronous processing, and scalability in cloud-based applications.
Azure Service Bus Queues
Dec 29, 2017.
From this article, you will learn how to work with Azure Service Bus Queues.
Queue Storage With Function App
Jun 06, 2017.
Queue Storage With Function App.
Microsoft Azure Service Bus Basics And Understanding Topics And Queues
Jun 10, 2016.
In this article, you will learn about Microsoft Azure Service Bus basics. You will also learn about Queues and Topics.
QUEUE In C#
Feb 02, 2016.
In this article you will learn about QUEUE in C#. Queue is FIFO (First In First Out) collection type & Generic class. Queue collection classes automatically size as required.
Overview Of Collection, Array List, Hash Table, Sorted List, Stack And Queue
Jul 04, 2015.
This article provides an overview of Collections, Array Lists, Hash Tables, Sorted Lists, Stacks and Queues.
Queue And Stack Collection In C#
Mar 17, 2015.
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 .NET. In the code examples of this article, we will learn about and how to work with Queue and Stack collection classes of .NET in C#.
Stacked Queues, An Advance in Data Structures
Nov 24, 2014.
This article is about stacked queues to provide combined configuration of both structures to help us to access data in a fine way for proper memory allocation of the data.
Windows Azure Cloud Service And Service Bus Queues
Mar 15, 2013.
Before starting windows azure cloud service, let us see, what are the services offered by windows azure platform.
Queue-Based Messaging in Windows Azure
May 17, 2012.
This article discuss various queue-based messaging solutions in Windows Azure. The queue-based solutions include using Windows Azure Queues and Windows Azure Service Bus Queues. It also provides solutions for optimizing the cost of transactions for queue-based messaging solutions.
Microsoft Message Queue(MSMQ)
Jul 04, 2011.
This article describes how to access message s from message queues, and how to peek and receive messages from message queues.
Thread Safe Collections ArrayList and Queue
Sep 24, 2004.
The attached project provides a dll containing a wrapper around the non-thread safe ArrayList and Queue classes. The wrapper implements the most common functions of this collection elements.
MyQueue In C#
Jan 09, 2004.
This article attempts to explain the how MSMQ can be implemented between two forms and the very basics of message queuing.
Interrogating Your Printer Queues with WMI
May 20, 2002.
In response to a newsgroup query here is the code needed to view the printer queues on your system.
Using Microsoft Message Queues To Build Scalable Solutions
Apr 12, 2001.
This tutorial shows you how to create, send, and received messages using MSMQ from the .NET base class library (System.Messaging) and C#.
SQL Server Performance Tuning Techniques for Modern Applications
Jun 05, 2026.
Learn how to build scalable background services using .NET Worker Services. Process queues, run scheduled jobs, and create reliable cloud-native applications.
Kth Largest in a Stream
May 19, 2026.
Find the Kth largest element in a stream efficiently using a Min Heap. This approach optimizes for streaming data and top K element retrieval. O(n log k).
Collections in .Net (C# Guide for Beginners)
May 01, 2026.
Master .NET collections in C#! This beginner's guide covers generic, non-generic, and concurrent collections. Learn to efficiently store and manage data for APIs, databases, caching, and real-time apps.