public static void Main()
Console.WriteLine("Hello World");
Personne p = new Personne("Toto", "titi");
public string Nom { get; set; }
public string Prenom { get; set; }
public Personne(string nom, string prenom)
Console.WriteLine("{0} {1}", this.Nom, this.Prenom);