I have a DataTable with columns of different types. What I want is a DataTable that has the same column names but all values are strings. That is, if this is the first:
Name   Age
-----------
John   31
Alice  27
Marge  45
where Name is a String column and Age is an Int32 column, what I want is:
Name   Age
-----------
John   31
Alice  27
Marge  45
where Name and Age are both string columns. The output table must contain the same values as the input table but every value must be converted to a string. Can anyone provide any insight on how one might go about doing this? I thought about maybe doing something like
foreach (DataColumn col in inputTable.Columns)
{
    outputTable.Columns.Add(col.ColumnName, typeof(string));
    foreach (DataRow row in inputTable.Rows)
    {
        ...??
    }
}
Or perhaps there is a better or more efficient approach? Any guidance would be greatly appreciated.