Você está na página 1de 1

using using using using

System; System.Collections.Generic; System.Linq; System.Text;

namespace Filme { class Diretor { private string nome; Diretor() { } private void setNome(String nome) { this.nome = nome; } private String getNome() { return this.nome; } } }

Você também pode gostar