Exemple #1
0
        static void Main(string[] args)
        {
            /*
            DirectoryInfo directory = new DirectoryInfo(Globe.RootDir);
            DirectoryInfo[] leagueDir = directory.GetDirectories();
            
            foreach (DirectoryInfo league in leagueDir)
            {
                LoadMatch loadMatch = new LoadMatch(league.Name, league.FullName);
                Thread leagueThread = new Thread(new ThreadStart(loadMatch.LoadFolder));
                leagueThread.Start();
            }
            */

            DAL dal = new DAL();
            dal.GetIncorrectMatchIDs();

            Console.ReadKey();
        }