5 Implementing Code Reusability in C# 12
Before you begin: join our book community on Discord
Give your feedback straight to the authors themselves and chat to other early readers on our Discord server (find the "software-architecture-csharp-12-dotnet-8" channel under EARLY ACCESS SUBSCRIPTION).
https://packt.link/EarlyAccess
Code reusability is one of the most important topics in software architecture. This chapter aims to discuss ways to enable code reuse, as well as to help you understand how .NET 8 solves the problem of managing and maintaining a reusable library.The following topics will be covered in this chapter:
- Understanding the principles of code reuse
- The advantages of working with .NET 8
- Creating reusable libraries using .NET 8
Although code reuse is an exceptional practice, as a software architect you must be aware when this is important for the scenario you are dealing with. Many good software architects agree that there is a lot of overengineering due to trying...