private static void CarregarContas2() { using (LeitorDeArquivo leitor = new LeitorDeArquivo("contas.txt")) { leitor.LerProximaLinha(); } }
private static void CarregarContas() { LeitorDeArquivo leitor = new LeitorDeArquivo("contas.txt"); try { leitor.LerProximaLinha(); leitor.LerProximaLinha(); leitor.LerProximaLinha(); } catch (IOException) { Console.WriteLine("Exceção do tipo IOException capturada e tratada!"); } finally { if (leitor != null) { leitor.Fechar(); } } }