FSharpAux


CsvReader<'Schema>

Namespace: FSharpAux.IO
Parent Module: Csv

Constructors

ConstructorDescription
new(TypeConverter, SchemaMode, Verbose)
Signature: (TypeConverter:(Type -> Converter) option * SchemaMode:SchemaModes option * Verbose:bool option) -> CsvReader<'Schema>

CompiledName: .ctor

Instance members

Instance memberDescription
x.ReadFile(...)
Signature: (file:string * separator:char * firstLineHasHeader:bool * SkipLines:int option * SkipLinesBeforeHeader:int option) -> seq<'Schema>

Reads in a file and returns typed rows in a sequence according to the schema

x.ReadFile(...)
Signature: (file:string * separator:char * header:string * SkipLines:int option) -> seq<'Schema>

Reads in a file and returns typed rows in a sequence according to the schema and given header string

x.ReadFromString(...)
Signature: (str:string * separator:char * firstLineHasHeader:bool * SkipLines:int option * SkipLinesBeforeHeader:int option) -> seq<'Schema>

Reads from a string and returns typed rows in a sequence according to the schema and given header string

x.ReadLine header separator line
Signature: header:SchemaPosition -> separator:char -> line:string -> 'Schema

Converts a seperated string according to the schema

x.ReadTextReader(...)
Signature: (reader:'?9325 * separator:char * firstLineHasHeader:bool * SkipLines:int option * SkipLinesBeforeHeader:int option) -> seq<'Schema>

Reads from a StreamReader and returns typed rows in a sequence according to the schema

x.ReadTextReader(...)
Signature: (reader:'?9322 * separator:char * header:string * SkipLines:int option) -> seq<'Schema>

Reads from a StreamReader and returns typed rows in a sequence according to the schema and given header string

Fork me on GitHub