On Thu, 27 Jun 2019, at 5:53 PM, Paul H. Tarver wrote:
I would greatly miss the speedy import capabilities of Foxpro and the CREATE CURSOR to build temporary files to temporarily hold imported data
Well, assuming CSV:
Install https://joshclose.github.io/CsvHelper/
Then:
void Main() { using (var reader = new StreamReader("path\to\file.csv")) using (var csv = new CsvReader(reader)) { var records = csv.GetRecords<dynamic>(); } }
So you have a collection of records in 'records' with which you can do what you like.