clean-code-dotnet
clean-code-dotnet copied to clipboard
:bathtub: Clean Code concepts and tools adapted for .NET
- added missing type to constructor - fixed mistake of signature name - changed double to recommended "decimal" type for money operations - corrected exception message type from char to...
Hi! I've spotted typo in section "Functions" paragraph "Functions should only be one level of abstraction" in point "Good". It's saying: ```c# class BetterJSAlternative { private string _tokenizer; private string...
English is my second language and sometimes I dont really get the meaning of some phrases. I'm trying to understand the part that says to always use domain name in...
ShowList funtion should return an object of List, currently does not return anything public List ShowList(Employee employees) { foreach (var employee in employees) { var expectedSalary = employees.CalculateExpectedSalary(); var experience...
Fix typo "is an worker" in Interface Segregation Principle (ISP) section
As a code reviewer, I would like to share URLs to specific rules in pull requests I'm reviewing. In order to do that, each `` element for each rule/concept must...
Drawable RenderLargeRectangles(_Rectangle rectangles_) { foreach (rectangle in rectangles) { rectangles must be array, not **Rectangle**
Fix comment
fix a misspelling.