I need at the time of reading a .csv file to disregard the header at the time of importing to the database how is it possible?
I'm using the following code:
linhaArquivo = arquivo.ReadLine();
campos = linhaArquivo.Split(new string[] { ";" },
StringSplitOptions.None);
registro = dt.NewRow();