Le prbm, c que j'arives pas à ajouté une ligne. VS me sort :
system.FormatExeption : Le format de la chaîne d'entrée est incorrect.
at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
at System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider)
a chaque fois que j'ajoute une ligne ou que j'essayes d'accéder a la table aprés avoir rajouté les lignes.
J'ai utilisé plusieur code différents et aucun ne marchent

DataRow j=f.Tables[0].NewRow();
j.ItemArray=new Object[] {t.Nom().ToString(), t.Prenom().ToString(), t.Naissance().ToString(), t.Mort().ToString()};
f.Tables[0].Rows.Add(j);
ou alors
string j=new string[4] {t.Nom().ToString(), t.Prenom().ToString(), t.Naissance().ToString(), t.Mort().ToString()};
f.Tables[0].Rows.Add(j);
ou encors
f.Tables[0].NewRow().ItemArray=new Object[] {t.Nom().ToString(), t.Prenom().ToString(), t.Naissance().ToString(), t.Mort().ToString()}
Donc, voilà, si kk1 à déjas eu ce prbm et a trouvé une solution...