Exemplo n.º 1
0
 public Repo()
 {
     this.lfiList = new List <LogFileInfo>();
     this.PopulateLogFiles();
     threadController = new MonitorThreadController(this);
     threadController.InitializeMonitors();
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            var r = new Repo();

            r.PopulateLogFiles();
            var tr = new TestRepo();

            var mtc = new MonitorThreadController(r);

            mtc.InitializeMonitors();
        }