You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, when working with CSV files using CsvHelper, there isn't a built-in option to automatically eliminate or delete empty columns during the parsing process. This feature would be highly beneficial for users dealing with CSV files containing numerous columns, especially in scenarios where empty columns are not required for data processing or analysis. Describe the solution you'd like
I would like to propose the addition of a configuration option or method within CsvHelper that allows users to specify whether empty columns should be eliminated during parsing.
Example:
var config = new CsvConfiguration(CultureInfo.InvariantCulture)
{
SkipEmptyColumns = true // or similar configuration option
};
With this enhancement, CsvHelper would intelligently skip or remove empty columns while parsing CSV files, streamlining the data processing workflow and improving overall efficiency.
I believe that implementing this feature would significantly benefit CsvHelper users, making it a more versatile and powerful tool for CSV data manipulation.
Describe alternatives you've considered
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, when working with CSV files using CsvHelper, there isn't a built-in option to automatically eliminate or delete empty columns during the parsing process. This feature would be highly beneficial for users dealing with CSV files containing numerous columns, especially in scenarios where empty columns are not required for data processing or analysis.
Describe the solution you'd like
I would like to propose the addition of a configuration option or method within CsvHelper that allows users to specify whether empty columns should be eliminated during parsing.
Example:
With this enhancement, CsvHelper would intelligently skip or remove empty columns while parsing CSV files, streamlining the data processing workflow and improving overall efficiency.
I believe that implementing this feature would significantly benefit CsvHelper users, making it a more versatile and powerful tool for CSV data manipulation.
Describe alternatives you've considered
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: