public static void ColdCallFileReaderLoop1(string fileName)
        {
            var peopleToRing = new ColdCallFileReader();

            try
            {
                peopleToRing.Open(fileName);
                for (int i = 0; i < peopleToRing.NPeopleToRing; i++)
                {
                    peopleToRing.ProcessNextPerson();
                }
                WriteLine("All callers processed correctly");
            }
            catch (FileNotFoundException)
            {
                WriteLine($"The file {fileName} does not exist");
            }
            catch (ColdCallFileFormatException ex)
            {
                WriteLine($"The file {fileName} appears to have been corrupted");
                WriteLine($"Details of problem are: {ex.Message}");
                if (ex.InnerException != null)
                {
                    WriteLine($"Inner exception was: {ex.InnerException.Message}");
                }
            }
            catch (Exception ex)
            {
                WriteLine($"Exception occurred:\n{ex.Message}");
            }
            finally
            {
                peopleToRing.Dispose();
            }
        }
        public static void ColdCallFileReaderLoop1(string fileName)
        {
            var peopleToRing = new ColdCallFileReader();

            try
            {
                peopleToRing.Open(fileName);
                for (int i = 0; i < peopleToRing.NPeopleToRing; i++)
                {
                    peopleToRing.ProcessNextPerson();
                }
                WriteLine("All callers processed correctly");
            }
            catch (FileNotFoundException)
            {
                WriteLine($"The file {fileName} does not exist");
            }
            catch (ColdCallFileFormatException ex)
            {
                WriteLine($"The file {fileName} appears to have been corrupted");
                WriteLine($"Details of problem are: {ex.Message}");
                if (ex.InnerException != null)
                {
                    WriteLine($"Inner exception was: {ex.InnerException.Message}");
                }
            }
            catch (Exception ex)
            {
                WriteLine($"Exception occurred:\n{ex.Message}");
            }
            finally
            {
                peopleToRing.Dispose();
            }
        }
Esempio n. 3
0
        private static void Main()
        {
            AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;

            Console.Write("Please type in the name of the file containing the names of the people to be cold called > ");
            string fileName     = Console.ReadLine();
            var    peopleToRing = new ColdCallFileReader();

            try
            {
                peopleToRing.Open(fileName);
                for (int i = 0; i < peopleToRing.NPeopleToRing; i++)
                {
                    peopleToRing.ProcessNextPerson();
                }
                Console.WriteLine("All callers processed correctly");
            }
            catch (FileNotFoundException)
            {
                Console.WriteLine("The file {0} does not exist", fileName);
            }
            catch (ColdCallFileFormatException ex)
            {
                Console.WriteLine("The file {0} appears to have been corrupted", fileName);
                Console.WriteLine("Details of problem are: {0}", ex.Message);
                if (ex.InnerException != null)
                {
                    Console.WriteLine("Inner exception was: {0}", ex.InnerException.Message);
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("Exception occurred:\n{0}", ex.Message);
            }
            finally
            {
                peopleToRing.Dispose();
            }

            Console.ReadLine();
        }