Tagged Questions
3
votes
5answers
508 views
Faster way of reading csv to grid
I have following in Windows Forms .NET 3.5
It works fine for csv with records less than 10,000 but is slower for records above 30,000.
Input csv file can can any records between 1 - 1,00,000 records ...
12
votes
4answers
447 views
Is there a better way to build my CSV output than String.Format()?
I'm generating CSV strings for various 3rd party utilities and this section of code gets repeated in many classes. Is there a better way to generate this string?
public override string CsvString()
{
...