CsvTextFieldParser
CsvTextFieldParser copied to clipboard
A simple CSV parser based on Microsoft.VisualBasic.FileIO.TextFieldParser.
CSProj files have been updated to enable SourceLink in your nuget --- *[This pull request was created with an automated workflow]* I noticed that your repository and Nuget package are...
Enables assembly signing in the CsvTextFieldParser project. One question is whether the private key should be kept a secret or if it should be checked in. I decided to check...
The assembly available from NuGet is not signed, which is creating a problem when using in a project that is signed
HI. I am really happy to have found your assembly. I am using the Visual Basic one for a net6.0 application, but now I also need the functionality from a...
This one from stackoverflow is good: public static class CsvTextFileFormatter { // https://stackoverflow.com/questions/6377454/escaping-tricky-string-to-csv-format public static string FormatCsvCell(char separator, string cell, bool alwaysQuote = false) { bool mustQuote(string cell) => cell.IndexOfAny(new...