简体   繁体   中英

How to skip first column of data's while parsing chunk by chunk large source file in C#

Reference Link used: http://www.codeproject.com/Articles/543789/How-to-parse-chunk-by-chunk-a-large-CSV-file-and-b

I need to skip the first column and the datasets of column 1 present in a large source file and parse only from column two.

I am new to this c# and Sql

Code is present in the given link.

Help appreciated

sr.ReadLine(); // add this line
while ((line = sr.ReadLine()) != null)
{

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM