Bom dia, poderia me ajudar com o mao na massa, começei e ja tive dificuldades, no tericeiro topoico onde mostra como fica a leitura, o meu codigo nao vai e eu nem imagino oque eu deixei de fazer para ele nao ir.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading.Tasks;
namespace ByteBank
{
public class LeitorDeArquivo
{
public string Arquivo { get; }
public LeitorDeArquivo (string arquivo)
{
Arquivo = arquivo;
// throw new FilenotfoundExecption();
Console.WriteLine("Abrindo arquivo" + arquivo);
}
public string LerProximaLinha()
{
Console.WriteLine("Lendo linha. . .");
// throw new IOException();
return "Linha do arquivo";
}
public void Fechar()
{
Console.WriteLine("Fechar arquivo.");
}
private static void CarregaContas()
{
LeitorDeArquivo leitor = new LeitorDeArquivo("Contas.txt");
leitor.LerProximaLinha();
leitor.LerProximaLinha();
leitor.LerProximaLinha();
leitor.Fechar();
}
}
}