In C#, collections are essential data structures that allow developers to manage groups of objects efficiently. This blog post will cover four primary types of collections: List, Dictionary, Queue, and Stack, including their usages and practical examples.
Tag
stack
All blogs tagged with stack
3
Articles
321
Total Views
Showing 3 of 3 articles
16
Mar
2026
Understanding Collections in C#: List, Dictionary, Queue, and Stack
14
Mar
2026
Understanding Stacks and Queues in C: A Beginner's Guide
In this blog post, you'll learn about two fundamental data structures in computer science: stacks and queues. We'll explore their definitions, implementations in C, and practical applications to enhance your programming skills.
14
Mar
2026
Mastering Recursion in C Programming: A Comprehensive Guide
In this blog post, readers will explore the concept of recursion in C programming. They will learn how to implement recursive functions, understand the mechanics behind recursion, and discover common pitfalls to avoid.