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. -- Alan Bourke alanpbourke (at) fastmail (dot) fm _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech Searchable Archive: https://leafe.com/archives This message: https://leafe.com/archives/byMID/[email protected] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

