The Three Phases of OOP Matter
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 {... [read more]
public Logger(IExceptionFormatter
Submit a review:
Login required.