string value = Convert.ToString(dataTable.Rows[i][columnName]);
the standard formatting will kick in, without the need for things like generics, extension methods or dynamic.
string value = Convert.ToString(dataTable.Rows[i][columnName]);
the standard formatting will kick in, without the need for things like generics, extension methods or dynamic.