C#

CQS-vs-CQRS

CQS and CQRS Made Easy in C#: Learn with Hands-On Examples

Command Query Separation (CQS) and Command Query Responsibility Segregation (CQRS) are two architectural patterns that play a crucial role in designing scalable and maintainable software systems. These patterns are often employed in combination, leveraging the strengths of each to achieve better code organization and performance. In this article, we will delve into CQS and CQRS, providing simple explanations and practical examples using C#.

Readonly list in C#

Quick Guide on C# ReadOnly List: Benefits and Usage | 2023

C# is a powerful programming language that offers a wide array of features and data structures to work with. One such data structure is the ReadOnly List, which was introduced to provide a convenient way to work with collections that should not be modified after initialization. In this article, we will explore what a ReadOnly List is, its benefits, and how to use it effectively in C#.

Sturct vs Class in C#

C# Class vs. Struct: Making the Right Choice | 2023

When working with C# programming language, understanding the difference between class and structs is crucial. In C#, both classes and structs are used to define custom data types, but they have some important differences. By default, members of a class are private, while members of a struct are public. Classes support inheritance, allowing one class …

C# Class vs. Struct: Making the Right Choice | 2023 Read More »

Scroll to Top