Chapter 13
- No, since you will have lots of duplicate code in this approach, which will cause difficulties when it comes to maintenance.
- The best approach for code reuse is creating libraries.
- Yes. You can find components that have already been created in the libraries you've created before and then increase these libraries by creating new components that can be reused in the future.
- The .NET Standard is a specification that allows compatibility between different frameworks of .NET, from .NET Framework to Unity. .NET Core is one .NET implementation and is open source.
- By creating a .NET Standard library, you will be able to use it in different .NET implementations, such as .NET Core, the .NET Framework, and Xamarin.
- You can enable code reuse using object-oriented principles (inheritance, encapsulation, abstraction, and polymorphism).
- Generics is a sophisticated implementation that simplifies how objects with the same characteristics...