using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ByteBank.Modelos;
namespace SistemaAgencia3 { class Program { static void Main(string[] args) { ContaCorrente[] conta = new ContaCorrente[4] { new ContaCorrente(123, 321123), new ContaCorrente(456, 654456), new ContaCorrente(789, 987789), new ContaCorrente(321, 123321) };
for (int index = 0; index < conta.Length; index++)
{
ContaCorrente contaC = conta[index];
Console.WriteLine($"O número e a agência do indíce {index} são {contaC.Numero} e {contaC.Agencia}");
}
Console.ReadLine();
}
}
}
//foreach (var item in conta) //{ // Console.WriteLine($"O número e a agência do indíce {} são {item.Numero} e {item.Agencia}"); //}