DotNetShoutout - Stories tagged with Principles and Patterns
4
Shouts

SOLID - Things Every Senior .NET Developer Should Know, Part 2

posted by Matt_TCFMatt_TCF 561 days, 8 hours, 3 minutes ago
Wednesday, December 07, 2011 3:04:01 AM GMT
Think you’re a senior .NET developer? Then you should already be familiar with SOLID, a set of five principles originally introduced by Robert Martin. These principles will help guide you towards better, more maintainable code and may help you have more fun at the same time. In this article, I’ll cover the Single Responsibility, Open-Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion principles. (more)
category: How To | clicked: 9 | comment | | source: trycatchfail.com
tags: Principles and Patterns, SOLID
10
Shouts

Don’t Repeat Yourself - Gil Fink on .Net

published 1238 days, 22 hours, 57 minutes ago posted by gilfgilf 1240 days, 4 hours, 46 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Wednesday, January 27, 2010 6:20:30 AM GMT
Today while I was doing code review I found myself writing a new generic function instead of one piece of code that was repeating itself in the developer’s code. When you write code sometimes you have to duplicate some piece of code. When it occurs, this is the best time to think of refactoring your functionality. (more)
category: How To | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Principles and Patterns, Code Review