Method | Description | |
---|---|---|
ParseCsv ( TextReader textReader ) : IEnumerable |
Parses a TextReader's contents as a CSV.
|
|
ToDictionaries ( this |
Expresses a parsed CSV's items as string dictionaries. The first parsed item's contents will be used as keys for subsequent items. |
|
ToExpandoObjects ( this |
Expresses a parsed CSV's items as ExpandoObjects. The first parsed item's contents will be used as property names for subsequent items. |
public static ParseCsv ( TextReader textReader ) : IEnumerable |
||
textReader | TextReader | /// The TextReader with contents to parse as a CSV. /// |
return | IEnumerable |
public static ToDictionaries ( this |
||
parsedCsv | this |
/// The parsed CSV's items. /// |
return | string>>.IEnumerable |
public static ToExpandoObjects ( this |
||
parsedCsv | this |
/// The parsed CSV's items. /// |
return | IEnumerable |