namespace CommonLib.LOG { public class LogStorage { public LogStorage(int maxSize) { LogStorage.Logs.MaxSize = maxSize; } public static LogCollection Logs { get { return LogStorage.m_Logs; } } private static LogCollection m_Logs = new LogCollection(40000); } }