- Clean Code in C#
- Jason Alls
- 202字
- 2025-04-04 12:56:14
Classes, Objects, and Data Structures
In this chapter, we will look at organizing, formatting, and commenting on classes. We will also look at writing clean C# objects and data structures that respect the Law of Demeter. In addition, we will look at immutable objects and data structures and the interfaces and classes that define immutable collections in the System.Collections.Immutable namespace.
We will cover the following broad topics:
- Organizing classes
- Commenting for document generation
- Cohesion and coupling
- The Law of Demeter
- Immutable objects and data structures
As you progress through this chapter, you will learn the following skills:
- How to effectively organize your classes using namespaces.
- Your classes will become smaller and more meaningful as you learn to program them with only a single responsibility.
- When it comes to writing your own APIs, you will be able to provide good developer documentation by providing comments that aid document generation tools.
- Any programs you write will be easy to modify and extend due to their high cohesion and low coupling.
- Finally, you will be able to apply the Law of Demeter and write and use immutable data structures.
So, let's start by looking at how we can effectively organize our classes by using namespaces.