I have the following code
using (StreamWriter streamwriter = new StreamWriter(savetopath))
{
using (CsvWriter csv = new CsvWriter(streamwriter))
{
List<string> columns = new List<string>();
foreach (DataColumn column in shopifyDatatable.Columns)
csv.WriteField(column.ColumnName.ToString());
csv.NextRecord();
foreach (DataRow row in shopifyDatatable.Rows)
{
for (var i = 0; i < shopifyDatatable.Columns.Count; i++)
{
csv.WriteField(row[i].ToString());
}
csv.NextRecord();
}
}
}
All works fine but field such 017825892588 ends up as 17825892588.
Can anyone help me figure this out?
Works on my machine. Full MCVE:
Output: