La Programmatrice Verde adcd853d06 Opzioni 1 e 4
2025-07-24 14:59:38 +02:00

28 lines
895 B
C#

namespace vacanzeEstive_rubricaTelefonica;
class Voce {
string nome;
string cognome;
string telefono;
string cellulare;
string email;
string indirizzo;
public Voce(string p_nome, string p_cognome, string p_telefono, string p_cellulare, string p_email, string p_indirizzo) {
this.nome = p_nome;
this.cognome = p_cognome;
this.telefono = p_telefono;
this.cellulare = p_cellulare;
this.email = p_email;
this.indirizzo = p_indirizzo;
}
public void MostraVoce() {
Console.WriteLine($"\tNome: {this.nome}");
Console.WriteLine($"\tCognome: {this.cognome}");
Console.WriteLine($"\tTelefono: {this.telefono}");
Console.WriteLine($"\tCellulare: {this.cellulare}");
Console.WriteLine($"\tEmail: {this.email}");
Console.WriteLine($"\tIndirizzo: {this.indirizzo}");
}
}