Method | Description | |
---|---|---|
Format ( ICollection collection ) : string | ||
Format ( object value ) : string | ||
Parse ( string str, |
||
Parse ( TextReader reader ) : string[] |
Parses a CSV record from a TextReader. Returns null if it doesnt find a complete line or its at the end.
|
|
Parse ( string str ) : string[] |
Parse this string into a CSV record. Returns null if its not complete.
|
|
ParseIsComplete ( string str ) : bool |
Does this string represent a complete CSV record?
|
Method | Description | |
---|---|---|
Parse ( string str, List |
||
ParseField ( string str ) : string |
public static Format ( ICollection collection ) : string | ||
collection | ICollection | |
return | string |
public static Format ( object value ) : string | ||
value | object | |
return | string |
public static Parse ( string str, |
||
str | string | |
destinationType | ||
return |
public static Parse ( TextReader reader ) : string[] | ||
reader | TextReader | |
return | string[] |
public static Parse ( string str ) : string[] | ||
str | string | |
return | string[] |
public static ParseIsComplete ( string str ) : bool | ||
str | string | |
return | bool |