Comment puis-je boucler sur chaque colonne d'un tableau de données en utilisant la fonction foreach
?
DataTable dtTable = new DataTable();
MySQLProcessor.DTTable(mysqlCommand, out dtTable);
foreach (DataRow dtRow in dtTable.Rows)
{
//foreach(DataColumn dc in dtRow)
}