Table of Contents

Enum EmptyLineBehavior

Namespace
Ecng.Common
Assembly
Ecng.Common.dll

Determines how empty lines are interpreted when reading CSV files. These values do not affect empty lines that occur within quoted fields or empty lines that appear at the end of the input file.

public enum EmptyLineBehavior
Extension Methods

Fields

EmptyColumn = 1

Empty lines are interpreted as a line with a single empty column.

EndOfFile = 3

An empty line is interpreted as the end of the input file.

Ignore = 2

Empty lines are skipped over as though they did not exist.

NoColumns = 0

Empty lines are interpreted as a line with zero columns.