Chapter 19
- Well-written code is code that any person skilled in that programming language can handle, modify, and evolve.
- Roslyn is the .NET Compiler that's used for code analysis inside Visual Studio.
- Code analysis is a practice that considers the way the code is written to detect bad practices before compilation.
- Code analysis can find problems that happen even with apparently good software, such as memory leaks and bad programming practices.
- Roslyn can inspect your code for style, quality, maintainability, design, and other issues. This is done during design time, so you can check the mistakes before compiling your code.
- Visual Studio extensions are tools that have been programmed to run inside Visual Studio. These tools can help you out in some cases where Visual Studio IDE doesn't have the appropriate feature for you to use.
- Microsoft Code Analysis, SonarLint, and Code Cracker.