I am in the beginning stages of making a c# app that downloads a .zip file, extracts a .csv file, and inserts it to a mssql db. Problem is the file contains 2 unnecessary lines at the beginning of the file. Is there a way to strip the 1st 2 lines out? This is geoip data from maxmind.com. Ideally the program would read the .csv, strip out the lines, and resave it. Any advice is welcome. Sample rows below.
Copyright (c) 2011 MaxMind Inc. All Rights Reserved.
"beginIp","endIp","beginIpNum","endIpNum","countryCode","countryName"
"1.0.0.0","1.0.0.255","16777216","16777471","AU","Australia"
"1.0.1.0","1.0.3.255","16777472","16778239","CN","China"
"1.0.4.0","1.0.7.255","16778240","16779263","AU","Australia"