Exemplo n.º 1
0
        public App()
        {
#if !DEBUG
            Dispatcher.UnhandledException += OnException;
            if (File.Exists("debug"))
#endif
            AllocConsole();


            Console.WriteLine("Loading local hashlist");
            if (File.Exists("Data/hashlist"))
            {
                HashIndex.LoadParallel("Data/hashlist");
            }
            else
            {
                Console.WriteLine("Local hashlist is missing!");
            }

            LoadConverters();
        }