The Three Phases of OOP Matter

Posted by K. Scott Allen (OdeToCode.com) on August 24, 2011

Gas

public static class Logger  {

public static void Log(string message, LogTypeEnum type) {
// ...
}

}





Liquid



public class Logger  {

public void LogError(Exception ex) {
// ...
}

}





Solid



public class Logger : ILog, IAudit  {

public Logger(IExceptionFormatter
... [read more]

Rating

not rated

Reviews

There are currently no comments or reviews.

Submit a review:

Login required.