clean-code-dotnet
clean-code-dotnet copied to clipboard
SOLID. Liskov Substitution Principle (LSP). Example incorrect.
Drawable RenderLargeRectangles(Rectangle rectangles) { foreach (rectangle in rectangles) {
rectangles must be array, not Rectangle
You are correct. Can you create PR with this changes?