Код: Выделить всё
string output = "";
foreach (DataRow rows in results.Tables[0].Rows)
{
output = output + rows.ToString() + "\n";
}
Подробнее здесь: https://stackoverflow.com/questions/962 ... o-a-string
Код: Выделить всё
string output = "";
foreach (DataRow rows in results.Tables[0].Rows)
{
output = output + rows.ToString() + "\n";
}