Method Parse
| Improve this Doc View SourceParse(String, Char)
Parses string into tabular text DataSet.
Declaration
public static DataSet<TabularText> Parse(string s, char delimiter)
Parameters
Type | Name | Description |
---|---|---|
System.String | s | The string. |
System.Char | delimiter | The delimiter char. |
Returns
Type | Description |
---|---|
DataSet<TabularText> | The result tabular text DataSet. |
Parse(TextReader, Char)
Parses text from text reader into tabular text DataSet.
Declaration
public static DataSet<TabularText> Parse(TextReader reader, char delimiter)
Parameters
Type | Name | Description |
---|---|---|
System.IO.TextReader | reader | The text reader. |
System.Char | delimiter | The delimiter char. |
Returns
Type | Description |
---|---|
DataSet<TabularText> | The result tabular text DataSet. |