d0fe23c0 88a0 766e 6eee e0b8b590abd5 - akesseler/Plexdata.CsvParser GitHub Wiki
This method tries to build a list of objects the represent a single CSV line.
Namespace: Plexdata.CsvParser.Processors
Assembly: Plexdata.CsvParser.NET (in Plexdata.CsvParser.NET.dll) Version: 1.1.3+d5bef99aa35461ce4bafadf0bf2c2aeca18044ea
C#
private static IEnumerable<Object> BuildLine(
IEnumerable<ItemDescriptor> settings,
TInstance value
)
- settings
- Type: System.Collections.Generic.IEnumerable(ItemDescriptor)
A list of settings that describe the expected structure of the CSV file. - value
- Type: TInstance
An instance of a class of type TInstance that contains valid CSV data.
Type: IEnumerable(Object)
A list of objects that contain the current values of a single CSV line.
This method may throw exceptions which must be handled by the caller.
CsvExporter(TInstance) Class
Plexdata.CsvParser.Processors Namespace