接上文 項目架構(gòu)開發(fā):數(shù)據(jù)訪問層之Cache

Android培訓(xùn),安卓培訓(xùn),手機(jī)開發(fā)培訓(xùn),移動開發(fā)培訓(xùn),云培訓(xùn)培訓(xùn)

 

本章我們繼續(xù)ILogger的開發(fā)

ILogger.cs

Android培訓(xùn),安卓培訓(xùn),手機(jī)開發(fā)培訓(xùn),移動開發(fā)培訓(xùn),云培訓(xùn)培訓(xùn)

 1     public interface ILogger 2     { 3         void Info(object message); 4         void Info(object message, Exception e); 5         void Debug(object message); 6         void Debug(object message, Exception e); 7         void Warn(object message); 8         void Warn(object message, Exception e); 9&nbs